aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/b100
diff options
context:
space:
mode:
authorNicholas Corgan <nick.corgan@ettus.com>2012-04-20 14:14:27 -0700
committerJosh Blum <josh@joshknows.com>2012-04-20 14:21:17 -0700
commita6ec6e254425f245db3d9543ddca43fe27d77a77 (patch)
treed9ccf57171fe210b930bf1d40c0341629519bf10 /host/lib/usrp/b100
parentece88b4ca3a6fd523c985416808b60acf6065044 (diff)
downloaduhd-a6ec6e254425f245db3d9543ddca43fe27d77a77.tar.gz
uhd-a6ec6e254425f245db3d9543ddca43fe27d77a77.tar.bz2
uhd-a6ec6e254425f245db3d9543ddca43fe27d77a77.zip
mboard id's are now more concise (codenames are separated, for example), and dboard subdev names are more descriptive (RFX RX is now RFX1200 RX, etc)
Diffstat (limited to 'host/lib/usrp/b100')
-rw-r--r--host/lib/usrp/b100/b100_impl.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/host/lib/usrp/b100/b100_impl.cpp b/host/lib/usrp/b100/b100_impl.cpp
index 991e6efd3..38bd89fea 100644
--- a/host/lib/usrp/b100/b100_impl.cpp
+++ b/host/lib/usrp/b100/b100_impl.cpp
@@ -260,7 +260,8 @@ b100_impl::b100_impl(const device_addr_t &device_addr){
////////////////////////////////////////////////////////////////////
_tree->create<std::string>("/name").set("B-Series Device");
const fs_path mb_path = "/mboards/0";
- _tree->create<std::string>(mb_path / "name").set("B100 (B-Hundo)");
+ _tree->create<std::string>(mb_path / "name").set("B100");
+ _tree->create<std::string>(mb_path / "codename").set("B-Hundo");
_tree->create<std::string>(mb_path / "load_eeprom")
.subscribe(boost::bind(&fx2_ctrl::usrp_load_eeprom, _fx2_ctrl, _1));