PSK Demod
digital_psk_demod
from gnuradio import digital
digital.psk.psk_demod(
constellation_points=$constellation_points,
mod_code=$mod_code,
differential=$differential,
samples_per_symbol=$samples_per_symbol,
excess_bw=$excess_bw,
freq_alpha=$freq_alpha,
timing_alpha=$timing_alpha,
timing_max_dev=$timing_max_dev,
phase_alpha=$phase_alpha,
verbose=$verbose,
log=$log,
)
Number of Constellation Points
constellation_points
8
int
Gray Code
mod_code
enum
Differential Encoding
differential
True
bool
Samples/Symbol
samples_per_symbol
2
int
Excess BW
excess_bw
0.35
real
Frequency Alpha
freq_alpha
0.01
real
Timing Alpha
timing_alpha
0.100
real
Timing Max Dev
timing_max_dev
1.5
real
Phase Alpha
phase_alpha
0.1
real
Verbose
verbose
False
bool
#if str($verbose) == 'False' then 'part' else 'none'#
Logging
log
False
bool
#if str($log) == 'False' then 'part' else 'none'#
in
complex