UChar To Float: Difference between revisions

From GNU Radio
Jump to navigation Jump to search
No edit summary
No edit summary
 
(One intermediate revision by one other user not shown)
Line 3: Line 3:


== Example Flowgraph ==
== Example Flowgraph ==
This flowgraph shows the outputs of AND, OR, and XOR logic blocks converted to Float to display in a Time Sink.


Insert description of flowgraph here, then show a screenshot of the flowgraph and the output if there is an interesting GUI. Currently we have no standard method of uploading the actual flowgraph to the wiki or git repo, unfortunately.  The plan is to have an example flowgraph showing how the block might be used, for every block, and the flowgraphs will live in the git repo.
[[File:And_Or_Xor_fg.png|700px]]
[[File:And_Or_Xor_out.png|700px]]


== Source Files ==
== Source Files ==


; C++ files
; C++ files
: [https://github.com/gnuradio/gnuradio TODO]
: [https://github.com/gnuradio/gnuradio/blob/main/gr-blocks/lib/uchar_to_float_impl.cc]


; Header files
; Header files
: [https://github.com/gnuradio/gnuradio TODO]
: [https://github.com/gnuradio/gnuradio/blob/main/gr-blocks/lib/uchar_to_float_impl.h]


; Public header files
; Public header files
: [https://github.com/gnuradio/gnuradio TODO]
: [https://github.com/gnuradio/gnuradio/blob/main/gr-blocks/include/gnuradio/blocks/uchar_to_float.h]


; Block definition
; Block definition
: [https://github.com/gnuradio/gnuradio TODO]
: [https://github.com/gnuradio/gnuradio/blob/main/gr-blocks/grc/blocks_uchar_to_float.block.yml]

Latest revision as of 16:34, 11 April 2023

Convert stream of unsigned chars to a stream of floats.

Example Flowgraph

This flowgraph shows the outputs of AND, OR, and XOR logic blocks converted to Float to display in a Time Sink.

And Or Xor fg.png And Or Xor out.png

Source Files

C++ files
[1]
Header files
[2]
Public header files
[3]
Block definition
[4]