diff options
author | Marcus Müller <marcus@hostalia.de> | 2018-08-17 20:48:35 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2018-08-23 22:47:38 +0200 |
commit | 9fa00984d8e5d04bf911f8d6d1ca818ca8e9fd1f (patch) | |
tree | d2e38f7ea428b4e06e1daf16fa0b1c933fb40dda /gr-digital/grc | |
parent | b219a8d183e339b6fec2d81284a988037a2d0180 (diff) |
Delete deprecated (q)d/qpsk and qam python hier blocks.
Fixes #1081.
These blocks were just overly specific wrappers for RRC + constellation
decoders/encoders.
With the nice constellation objects, no need to keep these around.
Note that they are still in use as *possible* constellations
(runtime-detected) in examples like narrowband/tunnel.py, but reducing
these in functionality is inavoidable at this point. Progress of
updating them is tracked in #1956.
Diffstat (limited to 'gr-digital/grc')
-rw-r--r-- | gr-digital/grc/digital_dxpsk_demod.block.yml | 75 | ||||
-rw-r--r-- | gr-digital/grc/digital_dxpsk_mod.block.yml | 52 |
2 files changed, 0 insertions, 127 deletions
diff --git a/gr-digital/grc/digital_dxpsk_demod.block.yml b/gr-digital/grc/digital_dxpsk_demod.block.yml deleted file mode 100644 index 99e7f40e6c..0000000000 --- a/gr-digital/grc/digital_dxpsk_demod.block.yml +++ /dev/null @@ -1,75 +0,0 @@ -id: digital_dxpsk_demod -label: DPSK Demod -category: '[Core]/Deprecated' - -parameters: -- id: type - label: Type - dtype: enum - options: [dbpsk, dqpsk] - option_labels: [DBPSK, DQPSK] -- id: samples_per_symbol - label: Samples/Symbol - dtype: int - default: '2' -- id: excess_bw - label: Excess BW - dtype: real - default: '0.35' -- id: freq_bw - label: FLL Bandwidth - dtype: real - default: 6.28/100.0 -- id: phase_bw - label: Phase Loop Bandwidth - dtype: real - default: 6.28/100.0 -- id: timing_bw - label: Timing Bandwidth - dtype: real - default: 6.28/100.0 -- id: mod_code - label: Gray Code - dtype: enum - options: ['"gray"', '"none"'] - option_labels: ['Yes', 'No'] -- id: verbose - label: Verbose - dtype: bool - default: 'False' - options: ['True', 'False'] - option_labels: ['On', 'Off'] - hide: ${ ('part' if str(verbose) == 'False' else 'none') } -- id: log - label: Log - dtype: bool - default: 'False' - options: ['True', 'False'] - option_labels: ['On', 'Off'] - hide: ${ ('part' if str(log) == 'False' else 'none') } -- id: sync_out - label: Sync Out - dtype: bool - default: 'False' - options: ['True', 'False'] - option_labels: ['On', 'Off'] - -inputs: -- domain: stream - dtype: complex - -outputs: -- domain: stream - dtype: byte - -templates: - imports: from gnuradio import digital - make: "digital.${type}_demod(\n\tsamples_per_symbol=${samples_per_symbol},\n\t\ - excess_bw=${excess_bw},\n\tfreq_bw=${freq_bw},\n\tphase_bw=${phase_bw},\n\t\ - timing_bw=${timing_bw},\n\tmod_code=${mod_code},\n\tverbose=${verbose},\n\t\ - log=${log}\n)" - callbacks: - - clock_recov.set_loop_bandwidth(${phase_bw}) - - time_recov.set_loop_bandwidth(${timing_bw}) - -file_format: 1 diff --git a/gr-digital/grc/digital_dxpsk_mod.block.yml b/gr-digital/grc/digital_dxpsk_mod.block.yml deleted file mode 100644 index 577baa4426..0000000000 --- a/gr-digital/grc/digital_dxpsk_mod.block.yml +++ /dev/null @@ -1,52 +0,0 @@ -id: digital_dxpsk_mod -label: DPSK Mod -category: '[Core]/Deprecated' - -parameters: -- id: type - label: Type - dtype: enum - options: [dbpsk, dqpsk] - option_labels: [DBPSK, DQPSK] -- id: samples_per_symbol - label: Samples/Symbol - dtype: int - default: '2' -- id: excess_bw - label: Excess BW - dtype: real - default: '0.35' -- id: mod_code - label: Gray Code - dtype: enum - options: ['"gray"', '"none"'] - option_labels: ['Yes', 'No'] -- id: verbose - label: Verbose - dtype: bool - default: 'False' - options: ['True', 'False'] - option_labels: ['On', 'Off'] - hide: ${ ('part' if str(verbose) == 'False' else 'none') } -- id: log - label: Log - dtype: bool - default: 'False' - options: ['True', 'False'] - option_labels: ['On', 'Off'] - hide: ${ ('part' if str(log) == 'False' else 'none') } - -inputs: -- domain: stream - dtype: byte - -outputs: -- domain: stream - dtype: complex - -templates: - imports: from gnuradio import digital - make: "digital.${type}_mod(\n\tsamples_per_symbol=${samples_per_symbol},\n\texcess_bw=${excess_bw},\n\ - \tmod_code=${mod_code},\n\tverbose=${verbose},\n\tlog=${log})\n\t" - -file_format: 1 |