diff options
| author | Mark Meserve <mark.meserve@ni.com> | 2018-12-06 16:29:49 -0600 |
|---|---|---|
| committer | Brent Stapleton <brent.stapleton@ettus.com> | 2018-12-12 16:27:25 -0800 |
| commit | e0afd4a08d2cb1c53281275bc259fca6a33e9974 (patch) | |
| tree | 7b04e72c700b535bdffaa825317980584bc46583 /host/lib/usrp/dboard/rhodium/rhodium_constants.hpp | |
| parent | 22836d65e71a0ad01827bdeb855018a8aaddf072 (diff) | |
| download | uhd-e0afd4a08d2cb1c53281275bc259fca6a33e9974.tar.gz uhd-e0afd4a08d2cb1c53281275bc259fca6a33e9974.tar.bz2 uhd-e0afd4a08d2cb1c53281275bc259fca6a33e9974.zip | |
rh: add highband spur reduction option
- When highband_spur_reduction is enabled, the lowband LO will be disabled
during highband operation. This improves spur performance, but also renders
timed tune commands unusable due to the MPM call.
- A warning is logged if the user uses a timed tune command that would change
the state of the lowband LO, as the MPM call will occur immediately instead
of at the given command time.
Diffstat (limited to 'host/lib/usrp/dboard/rhodium/rhodium_constants.hpp')
| -rw-r--r-- | host/lib/usrp/dboard/rhodium/rhodium_constants.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/host/lib/usrp/dboard/rhodium/rhodium_constants.hpp b/host/lib/usrp/dboard/rhodium/rhodium_constants.hpp index d21804f50..2548abdd5 100644 --- a/host/lib/usrp/dboard/rhodium/rhodium_constants.hpp +++ b/host/lib/usrp/dboard/rhodium/rhodium_constants.hpp @@ -53,8 +53,9 @@ static const std::vector<std::string> RHODIUM_TX_ANTENNAS = { }; // These names are taken from radio_rhodium.xml -static constexpr char SPUR_DODGING_ARG_NAME[] = "spur_dodging"; -static constexpr char SPUR_DODGING_THRESHOLD_ARG_NAME[] = "spur_dodging_threshold"; +static constexpr char SPUR_DODGING_ARG_NAME[] = "spur_dodging"; +static constexpr char SPUR_DODGING_THRESHOLD_ARG_NAME[] = "spur_dodging_threshold"; +static constexpr char HIGHBAND_SPUR_REDUCTION_ARG_NAME[] = "highband_spur_reduction"; static constexpr uint32_t RHODIUM_GPIO_MASK = 0x1F; static constexpr uint32_t SW10_GPIO_MASK = 0x3; |
