diff options
author | Josh Blum <josh@joshknows.com> | 2011-11-07 16:53:47 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-11-07 16:53:47 -0800 |
commit | 902818f50bbd486138a7d4cd2ce9ba3661f4a732 (patch) | |
tree | cec3681c04d5acc3e74924e4c255f1ea81201d81 /host/lib/usrp/dboard/db_wbx_simple.cpp | |
parent | 9d4350d74ea926999780ded0016c5ad51874ebec (diff) | |
download | uhd-902818f50bbd486138a7d4cd2ce9ba3661f4a732.tar.gz uhd-902818f50bbd486138a7d4cd2ce9ba3661f4a732.tar.bz2 uhd-902818f50bbd486138a7d4cd2ce9ba3661f4a732.zip |
uhd: removed wax and props utils
Diffstat (limited to 'host/lib/usrp/dboard/db_wbx_simple.cpp')
-rw-r--r-- | host/lib/usrp/dboard/db_wbx_simple.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/dboard/db_wbx_simple.cpp b/host/lib/usrp/dboard/db_wbx_simple.cpp index 1ac2a1704..f46ea70d1 100644 --- a/host/lib/usrp/dboard/db_wbx_simple.cpp +++ b/host/lib/usrp/dboard/db_wbx_simple.cpp @@ -36,9 +36,9 @@ using namespace boost::assign; /*********************************************************************** * The WBX Simple dboard constants **********************************************************************/ -static const prop_names_t wbx_tx_antennas = list_of("TX/RX"); +static const std::vector<std::string> wbx_tx_antennas = list_of("TX/RX"); -static const prop_names_t wbx_rx_antennas = list_of("TX/RX")("RX2"); +static const std::vector<std::string> wbx_rx_antennas = list_of("TX/RX")("RX2"); /*********************************************************************** * The WBX simple implementation |