diff options
author | Brent Stapleton <brent.stapleton@ettus.com> | 2019-01-10 17:13:17 -0800 |
---|---|---|
committer | Brent Stapleton <brent.stapleton@ettus.com> | 2019-01-16 11:40:23 -0800 |
commit | 8bd7498ed9fea9c46fa34705986968416d818029 (patch) | |
tree | a0c292407026d3afa611006ff525cd5c48b24f3b /host/lib/usrp/common/lmx2592.cpp | |
parent | 56c9a23c40417d5848b33b30ab941e8a8dc3c28c (diff) | |
download | uhd-8bd7498ed9fea9c46fa34705986968416d818029.tar.gz uhd-8bd7498ed9fea9c46fa34705986968416d818029.tar.bz2 uhd-8bd7498ed9fea9c46fa34705986968416d818029.zip |
uhd: skip formatting misc arrays, maps, etc.
Various data structures are nicely formatted to be human-readable.
clang-format makes these structures harder to read, so we can skip
formatting these sections.
Diffstat (limited to 'host/lib/usrp/common/lmx2592.cpp')
-rw-r--r-- | host/lib/usrp/common/lmx2592.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/host/lib/usrp/common/lmx2592.cpp b/host/lib/usrp/common/lmx2592.cpp index 31509232e..f9b2554b5 100644 --- a/host/lib/usrp/common/lmx2592.cpp +++ b/host/lib/usrp/common/lmx2592.cpp @@ -13,6 +13,7 @@ using namespace uhd; namespace { +// clang-format off constexpr double LMX2592_DOUBLER_MAX_REF_FREQ = 60e6; constexpr double LMX2592_MAX_FREQ_PFD = 125e6; @@ -71,6 +72,7 @@ constexpr std::array<std::array<int, NUM_CHDIV_STAGES>, NUM_DIVIDERS> LMX2592_CH constexpr int SPI_ADDR_SHIFT = 16; constexpr int SPI_ADDR_MASK = 0x7f; constexpr int SPI_READ_FLAG = 1 << 23; +// clang-format on enum intermediate_frequency_t { FVCO, |