Difference between revisions of "WBFM Receive PLL"
From GNU Radio
m (revise link) |
|||
(2 intermediate revisions by 2 users not shown) | |||
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]], this one does a full stereo demodulation. | ||
== 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 == | ||
− | + | This flowgraph shows the stereo version of the WBFM receiver. The flowgraph file can be found in https://github.com/gnuradio/gnuradio/blob/master/gr-analog/examples/USRP_FM_stereo.grc | |
+ | |||
+ | [[File:USRP_FM_stereo_pll.png|803px]] | ||
== Source Files == | == Source Files == | ||
− | ; | + | ; Python files |
− | : [https://github.com/gnuradio/gnuradio | + | : [https://github.com/gnuradio/gnuradio/blob/master/gr-analog/python/analog/wfm_rcv_pll.py] |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
; Block definition | ; Block definition | ||
− | : [https://github.com/gnuradio/gnuradio | + | : [https://github.com/gnuradio/gnuradio/blob/master/gr-analog/grc/analog_wfm_rcv_pll.block.yml] |
Latest revision as of 11:44, 20 July 2020
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, this one does a full stereo demodulation.
Parameters[edit]
- 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[edit]
This flowgraph shows the stereo version of the WBFM receiver. The flowgraph file can be found in https://github.com/gnuradio/gnuradio/blob/master/gr-analog/examples/USRP_FM_stereo.grc
Source Files[edit]
- Python files
- [1]
- Block definition
- [2]