2010-06-19 00:20:46 +00:00
|
|
|
//
|
2011-01-14 00:22:07 +00:00
|
|
|
// Copyright 2010-2011 Ettus Research LLC
|
2010-06-19 00:20:46 +00:00
|
|
|
//
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#include <uhd/types/ranges.hpp>
|
2011-02-24 22:54:24 +00:00
|
|
|
#include <uhd/utils/assert_has.hpp>
|
2010-06-19 00:20:46 +00:00
|
|
|
#include <uhd/utils/static.hpp>
|
2011-05-05 01:36:10 +00:00
|
|
|
#include <uhd/utils/msg.hpp>
|
2010-06-19 00:20:46 +00:00
|
|
|
#include <uhd/usrp/dboard_base.hpp>
|
|
|
|
|
#include <uhd/usrp/dboard_manager.hpp>
|
|
|
|
|
#include <boost/assign/list_of.hpp>
|
|
|
|
|
#include <boost/format.hpp>
|
2010-11-09 23:07:02 +00:00
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
|
#include <boost/tuple/tuple.hpp>
|
|
|
|
|
#include <vector>
|
2010-06-19 00:20:46 +00:00
|
|
|
|
|
|
|
|
using namespace uhd;
|
|
|
|
|
using namespace uhd::usrp;
|
|
|
|
|
using namespace boost::assign;
|
|
|
|
|
|
2010-11-09 23:07:02 +00:00
|
|
|
/***********************************************************************
|
|
|
|
|
* Utility functions
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
static void warn_if_old_rfx(const dboard_id_t &dboard_id, const std::string &xx){
|
|
|
|
|
typedef boost::tuple<std::string, dboard_id_t, dboard_id_t> old_ids_t; //name, rx_id, tx_id
|
|
|
|
|
static const std::vector<old_ids_t> old_rfx_ids = list_of
|
|
|
|
|
(old_ids_t("Flex 400 Classic", 0x0004, 0x0008))
|
|
|
|
|
(old_ids_t("Flex 900 Classic", 0x0005, 0x0009))
|
|
|
|
|
(old_ids_t("Flex 1200 Classic", 0x0006, 0x000a))
|
|
|
|
|
(old_ids_t("Flex 1800 Classic", 0x0030, 0x0031))
|
|
|
|
|
(old_ids_t("Flex 2400 Classic", 0x0007, 0x000b))
|
|
|
|
|
;
|
|
|
|
|
BOOST_FOREACH(const old_ids_t &old_id, old_rfx_ids){
|
|
|
|
|
std::string name; dboard_id_t rx_id, tx_id;
|
|
|
|
|
boost::tie(name, rx_id, tx_id) = old_id;
|
|
|
|
|
if (
|
|
|
|
|
(xx == "RX" and rx_id == dboard_id) or
|
|
|
|
|
(xx == "TX" and tx_id == dboard_id)
|
2011-05-05 01:36:10 +00:00
|
|
|
) UHD_MSG(warning) << boost::format(
|
2010-11-09 23:07:02 +00:00
|
|
|
"Detected %s daughterboard %s\n"
|
|
|
|
|
"This board requires modification to use.\n"
|
|
|
|
|
"See the daughterboard application notes.\n"
|
2011-05-05 01:36:10 +00:00
|
|
|
) % xx % name;
|
2010-11-09 23:07:02 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-19 00:20:46 +00:00
|
|
|
/***********************************************************************
|
|
|
|
|
* The unknown boards:
|
|
|
|
|
* Like a basic board, but with only one subdev.
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
class unknown_rx : public rx_dboard_base{
|
|
|
|
|
public:
|
|
|
|
|
unknown_rx(ctor_args_t args);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class unknown_tx : public tx_dboard_base{
|
|
|
|
|
public:
|
|
|
|
|
unknown_tx(ctor_args_t args);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* Register the unknown dboards
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
static dboard_base::sptr make_unknown_rx(dboard_base::ctor_args_t args){
|
|
|
|
|
return dboard_base::sptr(new unknown_rx(args));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static dboard_base::sptr make_unknown_tx(dboard_base::ctor_args_t args){
|
|
|
|
|
return dboard_base::sptr(new unknown_tx(args));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UHD_STATIC_BLOCK(reg_unknown_dboards){
|
|
|
|
|
dboard_manager::register_dboard(0xfff0, &make_unknown_tx, "Unknown TX");
|
|
|
|
|
dboard_manager::register_dboard(0xfff1, &make_unknown_rx, "Unknown RX");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* Unknown RX dboard
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
unknown_rx::unknown_rx(ctor_args_t args) : rx_dboard_base(args){
|
2010-11-09 23:07:02 +00:00
|
|
|
warn_if_old_rfx(this->get_rx_id(), "RX");
|
2010-10-25 22:42:08 +00:00
|
|
|
|
2011-09-22 20:44:26 +00:00
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Register properties
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
this->get_rx_subtree()->create<std::string>("name").set(
|
|
|
|
|
std::string(str(boost::format("%s - %s")
|
|
|
|
|
% get_rx_id().to_pp_string()
|
|
|
|
|
% get_subdev_name()
|
|
|
|
|
)));
|
|
|
|
|
this->get_rx_subtree()->create<int>("gains"); //phony property so this dir exists
|
|
|
|
|
this->get_rx_subtree()->create<double>("freq/value")
|
|
|
|
|
.set(double(0.0));
|
|
|
|
|
this->get_rx_subtree()->create<meta_range_t>("freq/range")
|
|
|
|
|
.set(freq_range_t(double(0.0), double(0.0)));
|
|
|
|
|
this->get_rx_subtree()->create<std::string>("antenna/value")
|
|
|
|
|
.set("");
|
|
|
|
|
this->get_rx_subtree()->create<std::vector<std::string> >("antenna/options")
|
|
|
|
|
.set(list_of(""));
|
|
|
|
|
this->get_rx_subtree()->create<int>("sensors"); //phony property so this dir exists
|
|
|
|
|
this->get_rx_subtree()->create<std::string>("connection")
|
|
|
|
|
.set("IQ");
|
|
|
|
|
this->get_rx_subtree()->create<bool>("enabled")
|
|
|
|
|
.set(true); //always enabled
|
|
|
|
|
this->get_rx_subtree()->create<bool>("use_lo_offset")
|
|
|
|
|
.set(false);
|
|
|
|
|
this->get_rx_subtree()->create<double>("bandwidth/value")
|
|
|
|
|
.set(double(0.0));
|
|
|
|
|
this->get_rx_subtree()->create<meta_range_t>("bandwidth/range")
|
|
|
|
|
.set(freq_range_t(0.0, 0.0));
|
2010-06-19 00:20:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2010-10-25 22:42:08 +00:00
|
|
|
* Unknown TX dboard
|
2010-06-19 00:20:46 +00:00
|
|
|
**********************************************************************/
|
|
|
|
|
unknown_tx::unknown_tx(ctor_args_t args) : tx_dboard_base(args){
|
2010-11-09 23:07:02 +00:00
|
|
|
warn_if_old_rfx(this->get_tx_id(), "TX");
|
2010-06-19 00:20:46 +00:00
|
|
|
|
2011-09-22 20:44:26 +00:00
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Register properties
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
this->get_tx_subtree()->create<std::string>("name").set(
|
|
|
|
|
std::string(str(boost::format("%s - %s")
|
|
|
|
|
% get_tx_id().to_pp_string()
|
|
|
|
|
% get_subdev_name()
|
|
|
|
|
)));
|
|
|
|
|
this->get_tx_subtree()->create<int>("gains"); //phony property so this dir exists
|
|
|
|
|
this->get_tx_subtree()->create<double>("freq/value")
|
|
|
|
|
.set(double(0.0));
|
|
|
|
|
this->get_tx_subtree()->create<meta_range_t>("freq/range")
|
|
|
|
|
.set(freq_range_t(double(0.0), double(0.0)));
|
|
|
|
|
this->get_tx_subtree()->create<std::string>("antenna/value")
|
|
|
|
|
.set("");
|
|
|
|
|
this->get_tx_subtree()->create<std::vector<std::string> >("antenna/options")
|
|
|
|
|
.set(list_of(""));
|
|
|
|
|
this->get_tx_subtree()->create<int>("sensors"); //phony property so this dir exists
|
|
|
|
|
this->get_tx_subtree()->create<std::string>("connection")
|
|
|
|
|
.set("IQ");
|
|
|
|
|
this->get_tx_subtree()->create<bool>("enabled")
|
|
|
|
|
.set(true); //always enabled
|
|
|
|
|
this->get_tx_subtree()->create<bool>("use_lo_offset")
|
|
|
|
|
.set(false);
|
|
|
|
|
this->get_tx_subtree()->create<double>("bandwidth/value")
|
|
|
|
|
.set(double(0.0));
|
|
|
|
|
this->get_tx_subtree()->create<meta_range_t>("bandwidth/range")
|
|
|
|
|
.set(freq_range_t(0.0, 0.0));
|
2010-06-19 00:20:46 +00:00
|
|
|
}
|