├── .gitignore ├── 9dpsk_or_8dpsk_with_nulls_mod_demod.grc ├── README.md ├── d8psk_mod_demod_example.grc ├── d8psk_mod_demod_with_channel_model.grc ├── d8psk_mod_demod_with_channel_model_and_CMA_eq.grc ├── d8psk_mod_demod_with_useless_CMA_eq.grc └── peak_freq_and_power_example.grc /.gitignore: -------------------------------------------------------------------------------- 1 | *.py 2 | -------------------------------------------------------------------------------- /9dpsk_or_8dpsk_with_nulls_mod_demod.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skintigh/GNURadio_examples/HEAD/9dpsk_or_8dpsk_with_nulls_mod_demod.grc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skintigh/GNURadio_examples/HEAD/README.md -------------------------------------------------------------------------------- /d8psk_mod_demod_example.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skintigh/GNURadio_examples/HEAD/d8psk_mod_demod_example.grc -------------------------------------------------------------------------------- /d8psk_mod_demod_with_channel_model.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skintigh/GNURadio_examples/HEAD/d8psk_mod_demod_with_channel_model.grc -------------------------------------------------------------------------------- /d8psk_mod_demod_with_channel_model_and_CMA_eq.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skintigh/GNURadio_examples/HEAD/d8psk_mod_demod_with_channel_model_and_CMA_eq.grc -------------------------------------------------------------------------------- /d8psk_mod_demod_with_useless_CMA_eq.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skintigh/GNURadio_examples/HEAD/d8psk_mod_demod_with_useless_CMA_eq.grc -------------------------------------------------------------------------------- /peak_freq_and_power_example.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skintigh/GNURadio_examples/HEAD/peak_freq_and_power_example.grc --------------------------------------------------------------------------------