Converting Data Types: Difference between revisions

From GNU Radio
Jump to navigation Jump to search
No edit summary
No edit summary
Line 46: Line 46:


[[File:SearchCharToFloatBlock.png|700px]]
[[File:SearchCharToFloatBlock.png|700px]]


All of the red errors have disappeared. Press the ''Play'' button to start the flowgraph:
All of the red errors have disappeared. Press the ''Play'' button to start the flowgraph:
Line 52: Line 53:




* use in modulator
The ''QT GUI Time Sink'' will now display the data from the ''Random Source'' block which is randomized 0's and 1's:
 
[[File:RandomSourceTimeSinkOutput.png|500px]]

Revision as of 16:28, 6 January 2022

This tutorial will describe how to convert between data types. The previous tutorial, Signal Data Types, presents an introduction to the Complex Float 32 and Float 32 data types for representing digitized signals.

Char/Byte Data Type

The Char or Byte data type is another useful data type for representing binary data. The Byte data type is represented by the magenta color in GRC:

Types.png

Search for the Random Source block and drag it into the workspace:

SearchRandomSourceBlock.png


The block defaults to the green Integer 32 data type. Double-click the block to open the properties and modify the data type to byte:

SelectByteDataTye.png


The Random Source is now converted to the magenta Char or Byte data type.

RandomSourceByteOutput.png

Converting Byte to Float 32

The default parameters of the Random Source will randomly generate values of 0 and 1. We will want to view them using the QT GUI Time Sink, so add it and the Throttle block into the workspace and connect the blocks:

ConnectionErrorCharToComplex.png


You will notice the red arrow between the Random Source and Throttle block which denotes a data type error that needs to be resolved. Double-click the Throttle block and change the data type to byte:

ChangeThrottleDataType.png


A new red arrow now shows there is a data type connection between the Throttle and the QT GUI Time Sink:

ConnectionErrorThrottleTimeSink.png


However, the QT GUI Time Sink does not have a char data type. Select Float:

TimeSinkDataTypeOptions.png


The GNU Radio block library comes with a variety of data type converters, including Char to Float. Search for the block, drag it into the workspace, and connect it into the flowgraph:

SearchCharToFloatBlock.png


All of the red errors have disappeared. Press the Play button to start the flowgraph:

RunFlowgraphButton.png


The QT GUI Time Sink will now display the data from the Random Source block which is randomized 0's and 1's:

RandomSourceTimeSinkOutput.png