From 30a8d2ecc36ce8ad6c01032e514ac66a277f06d0 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Fri, 29 Jan 2010 00:24:15 -0800 Subject: Added dboard id enum. Moved timespec into its own header. --- lib/usrp/dboard/id.cpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 lib/usrp/dboard/id.cpp (limited to 'lib/usrp/dboard/id.cpp') diff --git a/lib/usrp/dboard/id.cpp b/lib/usrp/dboard/id.cpp new file mode 100644 index 000000000..0aee3439e --- /dev/null +++ b/lib/usrp/dboard/id.cpp @@ -0,0 +1,27 @@ +// +// Copyright 2010 Ettus Research LLC +// + +#include +#include +#include +#include + +using namespace usrp_uhd::usrp::dboard; + +std::ostream& operator<<(std::ostream &os, const dboard_id_t &id){ + //map the dboard ids to string representations + std::map id_to_str = boost::assign::map_list_of + (ID_BASIC_TX, "basic tx") + (ID_BASIC_RX, "basic rx") + ; + + //get the string representation + if (id_to_str.count(id) != 0){ + os << id_to_str[id]; + } + else{ + os << boost::format("dboard id %u") % unsigned(id); + } + return os; +} -- cgit v1.2.3