Signal Source: Difference between revisions

From GNU Radio
Jump to navigation Jump to search
No edit summary
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Category:Block Docs]]
[[Category:Block Docs]]
Signal generator, generates a variety of signals.
Signal generator: generates a variety of waveforms.


Supports an output of type complex, float, int, and short
Supports an output of type complex, float, int, and short


== Parameters ==
== Parameters ==
<b>(''R''):</b> <span class="plainlinks">[https://wiki.gnuradio.org/index.php/GNURadioCompanion#Variable_Controls ''Run-time adjustable'']</span>


; Sample Rate
; Sample Rate (''R'')
: Sampling rate of signal
: default: samp_rate


; Waveform
; Waveform (''R'')
: waveform type
: options: [Constant, Sine, Cosine, Square, Triangle, Saw Tooth]
: For selection with a variable, the following values should be used:
    constant = 100
    sine = 101
    cosine = 102
    square = 103
    triangle = 104
    sawtooth = 105


; Frequency
; Frequency (''R'')
: Frequency of waveform (relative to sampling_freq)
: frequency of the waveform (default: 1000)


; Ampltiude
; Amplitude (''R'')
: Signal amplitude
: amplitude of the output (default: 1)


; Offset
; Offset (''R'')
: offset of signal
: offset from zero (default: 0)
 
; Initial Phase (Radians) (''R'')
: default: 0
 
== Messages ==
 
The 'freq' message port has been <code>deprecated in 3.9</code> in favor of the 'cmd' message port.
 
The 'cmd' message port accepts message pairs.
* 'freq' . float value
* 'ampl' . float value
* 'phase' . float value
* 'offset' . float value


== Example Flowgraph ==
== Example Flowgraph ==
This flowgraph is for version 3.9+.


[[File:Signal-source-ex.png]]
[[File:Signal-source-ex.png]]
== Example Output ==


Types of Waveforms:
Types of Waveforms:
Line 46: Line 71:


[[File:Signal-source-sawtooth.png|600px]]
[[File:Signal-source-sawtooth.png|600px]]
== Source Files ==
; C++ files
: [https://github.com/gnuradio/gnuradio TODO]
; Header files
: [https://github.com/gnuradio/gnuradio TODO]
; Public header files
: [https://github.com/gnuradio/gnuradio TODO]
; Block definition
: [https://github.com/gnuradio/gnuradio TODO]

Revision as of 17:51, 3 March 2021

Signal generator: generates a variety of waveforms.

Supports an output of type complex, float, int, and short

Parameters

(R): Run-time adjustable

Sample Rate (R)
default: samp_rate
Waveform (R)
options: [Constant, Sine, Cosine, Square, Triangle, Saw Tooth]
For selection with a variable, the following values should be used:
   constant = 100
   sine = 101
   cosine = 102
   square = 103
   triangle = 104
   sawtooth = 105
Frequency (R)
frequency of the waveform (default: 1000)
Amplitude (R)
amplitude of the output (default: 1)
Offset (R)
offset from zero (default: 0)
Initial Phase (Radians) (R)
default: 0

Messages

The 'freq' message port has been deprecated in 3.9 in favor of the 'cmd' message port.

The 'cmd' message port accepts message pairs.

  • 'freq' . float value
  • 'ampl' . float value
  • 'phase' . float value
  • 'offset' . float value

Example Flowgraph

This flowgraph is for version 3.9+.

Signal-source-ex.png

Example Output

Types of Waveforms:

Cosine (complex):

Signal-source-cosine.png

Constant:

Signal-source-constant.png

Square:

Signal-source-square.png

Triangle:

Signal-source-triangle.png

Sawtooth:

Signal-source-sawtooth.png

Source Files

C++ files
TODO
Header files
TODO
Public header files
TODO
Block definition
TODO