diff options
author | michael-west <michael.west@ettus.com> | 2017-12-05 16:00:44 -0800 |
---|---|---|
committer | michael-west <michael.west@ettus.com> | 2017-12-19 18:26:29 -0800 |
commit | d16a5d4f8e41da069b8add4176c8ac0e20a6c2b4 (patch) | |
tree | 175dc9ed89a20f529ad450ce61978150ee12b4c8 /host/include | |
parent | 7d35f43077adfa0fd9f8794b397c1b20821f3958 (diff) | |
download | uhd-d16a5d4f8e41da069b8add4176c8ac0e20a6c2b4.tar.gz uhd-d16a5d4f8e41da069b8add4176c8ac0e20a6c2b4.tar.bz2 uhd-d16a5d4f8e41da069b8add4176c8ac0e20a6c2b4.zip |
UBX: Add support for UBX-TDD
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/usrp/dboard_manager.hpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/host/include/uhd/usrp/dboard_manager.hpp b/host/include/uhd/usrp/dboard_manager.hpp index 46716eab9..c98617753 100644 --- a/host/include/uhd/usrp/dboard_manager.hpp +++ b/host/include/uhd/usrp/dboard_manager.hpp @@ -120,6 +120,25 @@ public: /*! * Make a new dboard manager. + * \param rx_dboard_id the id of the rx dboard + * \param tx_dboard_id the id of the tx dboard + * \param gdboard_id the id of the grand-dboard + * \param iface the custom dboard interface + * \param subtree the subtree to load with props + * \param defer_db_init initialising the daughterboards (DEPRECATED) + * \return an sptr to the new dboard manager + */ + static sptr make( + dboard_id_t rx_dboard_id, + dboard_id_t tx_dboard_id, + dboard_id_t gdboard_id, + dboard_iface::sptr iface, + property_tree::sptr subtree, + bool defer_db_init = false + ); + + /*! + * Make a new dboard manager. * \param rx_eeprom the RX EEPROM data * \param tx_eeprom the TX EEPROM data * \param gdb_eeprom the grand-dboard EEPROM data |