Copy: Difference between revisions

From GNU Radio
Jump to navigation Jump to search
No edit summary
 
(7 intermediate revisions by the same user not shown)
Line 16: Line 16:
; Show Msg Ports
; Show Msg Ports
: This block has an "enabled" message port that can be used to turn it on or off.
: This block has an "enabled" message port that can be used to turn it on or off.
== Message Ports ==
; en
: The 'Enabled' parameter of this block can be changed by sending a message at this port. Sending a Message PMT of '''pmt.from_bool(False)''' to this port via Message Strobe can disable the block. '''pmt.from_bool(True)''' can enable the block.


== Example Flowgraph ==  
== Example Flowgraph ==  


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.
The following graph depicts the usage of the copy block.
 
[[File:Copy Msg Flowgraph.PNG]]
 
Initially, copy is enabled, so the data is transferred to the output of the copy block.
 
[[File:Copy_Output_1.PNG| 400px]]
 
But when the block receives the msg of '''pmt.from_bool(False)''' after 2.5 seconds, it starts dropping all of the upcoming data.


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


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


; Header files
; Header files
: [https://github.com/gnuradio/gnuradio/blob/main/gr-blocks/lib_copy_impl.cc lib_copy_impl.cc]
: [https://github.com/gnuradio/gnuradio/blob/main/gr-blocks/lib/copy_impl.h copy_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/copy.h copy.h]


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

Latest revision as of 06:49, 22 February 2022

When enabled (default), this block copies its input to its output. When disabled, this block drops its input on the floor.

Parameters

(R): Run-time adjustable

Type
  • Complex
  • Float
  • Int
  • Short
  • Byte
Enabled (R)
Whether or not the input is copied to the output, or just dropped.
Show Msg Ports
This block has an "enabled" message port that can be used to turn it on or off.

Message Ports

en
The 'Enabled' parameter of this block can be changed by sending a message at this port. Sending a Message PMT of pmt.from_bool(False) to this port via Message Strobe can disable the block. pmt.from_bool(True) can enable the block.

Example Flowgraph

The following graph depicts the usage of the copy block.

Copy Msg Flowgraph.PNG

Initially, copy is enabled, so the data is transferred to the output of the copy block.

Copy Output 1.PNG

But when the block receives the msg of pmt.from_bool(False) after 2.5 seconds, it starts dropping all of the upcoming data.

Source Files

C++ files
lib_copy_impl.cc
Header files
copy_impl.h
Public header files
copy.h
Block definition
blocks_copy.block.yml