Talk:Guided Tutorial PSK Demodulation

From GNU Radio
Revision as of 05:46, 22 February 2021 by 172.18.0.3 (talk) (Provide non-obvious data needed to duplicate tutorial steps.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
  • Implementation Hints
I greatly appreciate this guided tutorial.
I had some difficulties following along, so the following might help others using this tutorial.
* Hints for mpsk_rrc_rolloff.grc
 1. Constellation Modulator property Constellation = qpsk_const
    This setting uses the Constellation Rect. Object id qpsk_const (aka <con...(m=4))
* Hints for mpsk_stage1.grc
 1. Constellation Modulator property Constellation = qpsk_const
    This setting uses the Constellation Rect. Object id qpsk_const (aka <con...(m=4))
 2. Variable id rrc_taps value is firdes.root_raised_cosine(1.0,samp_rate,samp_rate/sps,excess_bw,11*sps).
    See GNU Radio Manual and C++ API Reference
    /*!
     * \brief design a Root Cosine FIR Filter (do we need a window?)
     *
     * \param gain            overall gain of filter (typically 1.0)
     * \param sampling_freq   sampling freq (Hz)
     * \param symbol_rate     symbol rate, must be a factor of sample rate
     * \param alpha           excess bandwidth factor
     * \param ntaps           number of taps
     */