diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-07-27 12:05:05 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-07-27 12:05:05 +0200 |
commit | 6087160593e74aff9147153c69ea23849fc8b921 (patch) | |
tree | f305db8542f0a073a96bc6c66958a007192cf31d /src/ConfigParser.h | |
parent | 0f86d6939f022d6fc101fd08f17856d2d7c446cf (diff) | |
download | dabmod-6087160593e74aff9147153c69ea23849fc8b921.tar.gz dabmod-6087160593e74aff9147153c69ea23849fc8b921.tar.bz2 dabmod-6087160593e74aff9147153c69ea23849fc8b921.zip |
Add PrecisionWave DEXTER support
Diffstat (limited to 'src/ConfigParser.h')
-rw-r--r-- | src/ConfigParser.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ConfigParser.h b/src/ConfigParser.h index 574caa2..8f2a1d2 100644 --- a/src/ConfigParser.h +++ b/src/ConfigParser.h @@ -51,9 +51,9 @@ struct mod_settings_t { bool fileOutputShowMetadata = false; bool useUHDOutput = false; bool useSoapyOutput = false; + bool useDexterOutput = false; bool useLimeOutput = false; bool useBladeRFOutput = false; - const std::string BladeRFOutputFormat = "s16"; // to transmit SC16 IQ size_t outputRate = 2048000; size_t clockRate = 0; @@ -87,7 +87,7 @@ struct mod_settings_t { // Settings for the OFDM windowing size_t ofdmWindowOverlap = 0; -#if defined(HAVE_OUTPUT_UHD) || defined(HAVE_SOAPYSDR) || defined(HAVE_LIMESDR) || defined(HAVE_BLADERF) +#if defined(HAVE_OUTPUT_UHD) || defined(HAVE_SOAPYSDR) || defined(HAVE_LIMESDR) || defined(HAVE_BLADERF) || defined(HAVE_DEXTER) Output::SDRDeviceConfig sdr_device_config; #endif |