diff options
author | Josh Blum <josh@joshknows.com> | 2010-02-16 12:25:31 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-02-16 12:25:31 -0800 |
commit | 429342fbab61b49c6622f994c5522ee3eee7e39a (patch) | |
tree | 5d607d3f6314d79403bffdce179d6c95a5e8759b /lib/usrp/dboard/id.cpp | |
parent | 1b70ff306342ca1078e105488811a52c49b446f4 (diff) | |
download | uhd-429342fbab61b49c6622f994c5522ee3eee7e39a.tar.gz uhd-429342fbab61b49c6622f994c5522ee3eee7e39a.tar.bz2 uhd-429342fbab61b49c6622f994c5522ee3eee7e39a.zip |
Added usrp2 impl for the guts of the usrp2 handling.
The top level usrp2 will contain an impl and forward calls to it.
Diffstat (limited to 'lib/usrp/dboard/id.cpp')
-rw-r--r-- | lib/usrp/dboard/id.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/usrp/dboard/id.cpp b/lib/usrp/dboard/id.cpp index 0f173ef14..80162240e 100644 --- a/lib/usrp/dboard/id.cpp +++ b/lib/usrp/dboard/id.cpp @@ -24,6 +24,7 @@ using namespace uhd::usrp::dboard; std::ostream& operator<<(std::ostream &os, const dboard_id_t &id){ //map the dboard ids to string representations uhd::dict<dboard_id_t, std::string> id_to_str; + id_to_str[ID_NONE] = "none"; id_to_str[ID_BASIC_TX] = "basic tx"; id_to_str[ID_BASIC_RX] = "basic rx"; |