aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/dboard/db_wbx_simple.cpp
Commit message (Collapse)AuthorAgeFilesLines
* host: Update code base using clang-tidyMartin Braun2021-03-171-1/+1
| | | | | | | | | | | | The checks from the new clang-tidy file are applied to the source tree using: $ find . -name "*.cpp" | sort -u | xargs \ --max-procs 8 --max-args 1 clang-tidy --format-style=file \ --fix -p /path/to/compile_commands.json Note: This is the same procedure as 107a49c0, but applied to all the new code since then.
* uhd: Apply clang-format against all .cpp and .hpp files in host/Martin Braun2020-03-031-56/+89
| | | | | Note: template_lvbitx.{cpp,hpp} need to be excluded from the list of files that clang-format gets applied against.
* uhd: Replace all occurrences of boost::bind with std::bindMartin Braun2019-11-261-4/+5
| | | | | | | | | | | | | | | | | | | | | Note: Replacing everything with a lambda would be even better, but that can't be easily scripted so we'll do this as a first step to reduce the Boost footprint. This also removes occurences of #include <boost/bind.hpp>, and makes sure all usages of std::bind have an #include <functional>. clang-format wasn't always applied to minimize the changeset in this commit, however, it was applied to the blocks of #includes. Due to conflicts with other Boost libraries, the placeholders _1, _2, etc. could not be directly used, but had to be explicitly called out (as std::placeholders::_1, etc.). This makes the use of std::bind even uglier, which serves as another reminder that using std::bind (and even more so, boost::bind) should be avoided. nirio/rpc/rpc_client.cpp still contains a reference to boost::bind. It was not possible to remove it by simply doing a search and replace, so it will be removed in a separate commit.
* uhd: Update license headersMartin Braun2018-02-191-1/+2
| | | | | | | All copyright is now attributed to "Ettus Research, a National Instruments company". SPDX headers were also updated to latest version 3.0.
* Move all license headers to SPDX format.Martin Braun2017-12-221-12/+1
|
* dboard: Made dboard class dtors virtualAshish Chaudhari2016-02-261-1/+1
| | | | | - Interface and all base classes have virtual destructors - Wrapped UBX dtor in UHD_SAFE_CALL
* prop_tree: Multiple API enhancements to uhd::propertyAshish Chaudhari2016-02-111-2/+2
| | | | | | | | | - Added desired and coerced values and accessors to property - Added support to register desired subscribers - set APIs don't reallocate storage for a property value - Renamed callback method registration APIs - Registering 2 coercers or publishers for a property will throw - Registering a coercer and a publisher for the same property will throw
* usrp3: Added new GPIO ATR 3000 coreAshish Chaudhari2015-09-291-18/+18
| | | | | | | | - Refactored GPIO ATR definitions - Added new 3000 core with a more efficient API - Added a separate db_gpio_atr core to control the ATR bus - Ported b2xx, e3xx and x3xx to the new core - Minor cleanup
* 120 MHz daughterboard support, Integer-N tuning, ADF435x code consolidationNicholas Corgan2014-01-241-0/+2
| | | | | | | * Added support for new CBX-120, SBX-120, and WBX-120 daughterboards * Added implementation of Integer-N tuning for all CBX, SBX, and WBX daughterboards * Added --int-n option to examples to show how to use Integer-N tuning API * Removed duplicate ADF4350/ADF4351 code and moved it to common/adf435x_common.cpp
* mboard id's are now more concise (codenames are separated, for example), and ↵Nicholas Corgan2012-04-201-3/+6
| | | | dboard subdev names are more descriptive (RFX RX is now RFX1200 RX, etc)
* Updates to accommodate loopback calibration modeJason Abele2011-11-111-4/+22
| | | | Added CAL antenna to WBX, SBX and RFX
* uhd: removed wax and props utilsJosh Blum2011-11-071-2/+2
|
* wbx: bring WBX into the treeJosh Blum2011-11-071-163/+22
|
* wbx: squashed Ben's WBX workJosh Blum2011-11-071-10/+37
|
* Merge branch 'master' into nextJosh Blum2011-07-181-3/+9
|\ | | | | | | | | Conflicts: host/lib/convert/convert_fc64_with_sse2.cpp
| * Updates to WBX dboard driver for version 3 supportJason Abele2011-07-151-3/+9
| | | | | | | | Use step attenuator for TX gain control
* | usrp: deleted a bunch on obsoleted files in usrp directoryJosh Blum2011-06-291-1/+0
|/
* WBX: Add support for WBX v3 daughterboardsJason Abele2011-06-161-0/+2
|
* wbx: mixers always enabled, ant switches always definedJosh Blum2011-06-021-3/+2
|
* WBX: keep mixer on when TX idle, and switch TX ant sw to RX when idle to ↵Nick Foster2011-05-261-1/+1
| | | | | | keep mixer from feeding out when idle. This allows USRPs to maintain a constant phase relationship between MIMO devices while operating.
* usrp: replaced conditional dboard debug prints w/ UHD_LOGV(often)Josh Blum2011-05-041-2/+0
|
* wbx: split wbx into daughterboard and granddaughterboard implementationJosh Blum2011-04-261-0/+251