diff options
author | Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com> | 2018-10-12 18:11:53 +0200 |
---|---|---|
committer | Brent Stapleton <bstapleton@g.hmc.edu> | 2018-10-29 10:51:01 -0700 |
commit | 07a0e0a036a62a160b5e0385fd163f0d88f91f2e (patch) | |
tree | 75205ecd1c6a8d3630f22e1b2712e11aa1a44c4b /host/lib/usrp/cores | |
parent | eefba16d7651d06dcdb87c5fcb4c823b06972e33 (diff) | |
download | uhd-07a0e0a036a62a160b5e0385fd163f0d88f91f2e.tar.gz uhd-07a0e0a036a62a160b5e0385fd163f0d88f91f2e.tar.bz2 uhd-07a0e0a036a62a160b5e0385fd163f0d88f91f2e.zip |
cores:rx_frontend_core_3000: fix real mode
Diffstat (limited to 'host/lib/usrp/cores')
-rw-r--r-- | host/lib/usrp/cores/rx_frontend_core_3000.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/host/lib/usrp/cores/rx_frontend_core_3000.cpp b/host/lib/usrp/cores/rx_frontend_core_3000.cpp index a5052ea02..15c65ad03 100644 --- a/host/lib/usrp/cores/rx_frontend_core_3000.cpp +++ b/host/lib/usrp/cores/rx_frontend_core_3000.cpp @@ -82,6 +82,8 @@ public: uint32_t mapping_reg_val = 0; switch (fe_conn.get_sampling_mode()) { case fe_connection_t::REAL: + mapping_reg_val = FLAG_DSP_RX_MAPPING_REAL_MODE; + break; case fe_connection_t::HETERODYNE: mapping_reg_val = FLAG_DSP_RX_MAPPING_REAL_MODE|FLAG_DSP_RX_MAPPING_REAL_DECIM; break; |