WBFM Receive: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
[[Category:Block Docs]] | [[Category:Block Docs]] | ||
Hierarchical block for demodulating a broadcast FM signal. | |||
The input is the downconverted complex baseband signal (gr_complex). | |||
The output is the demodulated audio (float). | |||
Compared to [[WBFM Receive PLL]], this one does a simple mono demodulation with deemphasis | |||
== Parameters == | == Parameters == | ||
; Quadrature Rate | ; Quadrature Rate | ||
: | : Input sample rate of complex baseband input. (float) | ||
; Audio Decimation | ; Audio Decimation | ||
: | : How much to decimate quad_rate to get to audio. (integer) | ||
== Example Flowgraph == | == Example Flowgraph == | ||
Line 20: | Line 22: | ||
== Source Files == | == Source Files == | ||
; | ; Python files | ||
: [https://github.com/gnuradio/gnuradio | : [https://github.com/gnuradio/gnuradio/blob/master/gr-analog/python/analog/wfm_rcv.py] | ||
; Block definition | ; Block definition | ||
: [https://github.com/gnuradio/gnuradio | : [https://github.com/gnuradio/gnuradio/blob/master/gr-analog/grc/analog_wfm_rcv.block.yml] |
Revision as of 11:07, 10 August 2019
Hierarchical block for demodulating a broadcast FM signal.
The input is the downconverted complex baseband signal (gr_complex).
The output is the demodulated audio (float).
Compared to WBFM Receive PLL, this one does a simple mono demodulation with deemphasis
Parameters
- Quadrature Rate
- Input sample rate of complex baseband input. (float)
- Audio Decimation
- How much to decimate quad_rate to get to audio. (integer)
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.
Source Files
- Python files
- [1]
- Block definition
- [2]