diff options
author | michael-west <michael.west@ettus.com> | 2017-12-05 15:49:28 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-12-07 13:32:26 -0800 |
commit | c0057e35b805faa9f0733ae27ca6e24609dc62c2 (patch) | |
tree | 7b8c33d4671e8553e81b1f338c643c944ff9576e /host/lib/usrp/dboard_ctor_args.hpp | |
parent | cc86cc5a6a713788cc58add7fd76486b8a8fa141 (diff) | |
download | uhd-c0057e35b805faa9f0733ae27ca6e24609dc62c2.tar.gz uhd-c0057e35b805faa9f0733ae27ca6e24609dc62c2.tar.bz2 uhd-c0057e35b805faa9f0733ae27ca6e24609dc62c2.zip |
UHD: Add eeprom info to dboard_base
Diffstat (limited to 'host/lib/usrp/dboard_ctor_args.hpp')
-rw-r--r-- | host/lib/usrp/dboard_ctor_args.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/host/lib/usrp/dboard_ctor_args.hpp b/host/lib/usrp/dboard_ctor_args.hpp index c8e4006d1..db26193cc 100644 --- a/host/lib/usrp/dboard_ctor_args.hpp +++ b/host/lib/usrp/dboard_ctor_args.hpp @@ -1,5 +1,5 @@ // -// Copyright 2010 Ettus Research LLC +// Copyright 2010,2017 Ettus Research, A National Instruments Company // // 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 @@ -19,9 +19,9 @@ #define INCLUDED_LIBUHD_USRP_DBOARD_CTOR_ARGS_HPP #include <uhd/property_tree.hpp> -#include <uhd/usrp/dboard_id.hpp> #include <uhd/usrp/dboard_base.hpp> #include <uhd/usrp/dboard_iface.hpp> +#include <uhd/usrp/dboard_eeprom.hpp> #include <string> namespace uhd{ namespace usrp{ @@ -30,7 +30,7 @@ namespace uhd{ namespace usrp{ public: std::string sd_name; dboard_iface::sptr db_iface; - dboard_id_t rx_id, tx_id; + dboard_eeprom_t rx_eeprom, tx_eeprom; property_tree::sptr rx_subtree, tx_subtree; dboard_base::sptr rx_container, tx_container; |