diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2023-08-15 10:11:06 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2023-08-15 10:11:06 +0200 |
commit | 6c0732dcfc2af963e2b8577e9fc38f71307a1033 (patch) | |
tree | 8125f23775a13eca438604268876d03bcba9a815 | |
parent | 6b1fa1637b03a9e4ddbac6aa99d936056c3d473f (diff) | |
download | dabmod-6c0732dcfc2af963e2b8577e9fc38f71307a1033.tar.gz dabmod-6c0732dcfc2af963e2b8577e9fc38f71307a1033.tar.bz2 dabmod-6c0732dcfc2af963e2b8577e9fc38f71307a1033.zip |
Dexter: remove old metrics from SDR.cpp
-rw-r--r-- | doc/example.ini | 9 | ||||
-rw-r--r-- | src/output/SDR.cpp | 21 |
2 files changed, 8 insertions, 22 deletions
diff --git a/doc/example.ini b/doc/example.ini index cd48ef4..f009fbe 100644 --- a/doc/example.ini +++ b/doc/example.ini @@ -316,10 +316,17 @@ channel=13C ;dpd_port=50055 [dexteroutput] -txgain=32768 +txgain=65535 + +; channel/frequency is applied to ad9957.center_frequency ;frequency=234208000 channel=13C +; lo offset is applied to dexter_dsp_tx.frequency0 +lo_offset=0 + +max_gps_holdover_time=3600 + [limeoutput] ; Lime output directly runs against the LMS device driver. It does not support SFN nor predistortion. device= diff --git a/src/output/SDR.cpp b/src/output/SDR.cpp index 6c03b53..d2956a2 100644 --- a/src/output/SDR.cpp +++ b/src/output/SDR.cpp @@ -99,27 +99,6 @@ SDR::SDR(SDRDeviceConfig& config, std::shared_ptr<SDRDevice> device) : RC_ADD_PARAMETER(fifo_fill, "A value representing the Lime FIFO fullness [percent]"); } #endif // HAVE_LIMESDR - -#ifdef HAVE_DEXTER - if (std::dynamic_pointer_cast<Dexter>(device)) { - RC_ADD_PARAMETER(clks, "DEXTER internal clk counter value"); - RC_ADD_PARAMETER(fifo_not_empty_clks, "DEXTER internal clk counter value when FIFO was last empty"); - RC_ADD_PARAMETER(gpsdo_locked, "1 if GPSDO is locked"); - RC_ADD_PARAMETER(pps_clk_error_hz, "Estimated error in Hz of clock"); - RC_ADD_PARAMETER(pps_cnt, "Number of 1PPS pulses seen from GPS"); - RC_ADD_PARAMETER(dsp_version, "Version of FPGA DSP"); - RC_ADD_PARAMETER(vcc3v3, "Voltage of VCC 3V3"); - RC_ADD_PARAMETER(vcc5v4, "Voltage of VCC 5V4"); - RC_ADD_PARAMETER(vfan, "Fan voltage"); - RC_ADD_PARAMETER(vcc_main_in, "Main input voltage"); - RC_ADD_PARAMETER(vcc3v3pll, "Voltage of VCC 3V3 PLL"); - RC_ADD_PARAMETER(vcc2v5io, "Voltage of VCC 2V5 IO"); - RC_ADD_PARAMETER(vccocxo, "OCXO voltage"); - RC_ADD_PARAMETER(tempfpga, "FPGA temperature [celsius]"); - RC_ADD_PARAMETER(voltage_alarm, "Voltage out of bounds"); - RC_ADD_PARAMETER(temp_alarm, "Temperature out of bounds"); - } -#endif // HAVE_DEXTER } SDR::~SDR() |