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/b100 | |
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/b100')
-rw-r--r-- | host/lib/usrp/b100/b100_impl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/b100/b100_impl.cpp b/host/lib/usrp/b100/b100_impl.cpp index 110c5ff87..473a3d6b1 100644 --- a/host/lib/usrp/b100/b100_impl.cpp +++ b/host/lib/usrp/b100/b100_impl.cpp @@ -1,5 +1,5 @@ // -// Copyright 2012-2014 Ettus Research LLC +// Copyright 2012-2014,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 @@ -471,7 +471,7 @@ b100_impl::b100_impl(const device_addr_t &device_addr){ //create a new dboard interface and manager _dboard_manager = dboard_manager::make( - rx_db_eeprom.id, tx_db_eeprom.id, gdb_eeprom.id, + rx_db_eeprom, tx_db_eeprom, gdb_eeprom, make_b100_dboard_iface(_fifo_ctrl, _fpga_i2c_ctrl, _fifo_ctrl/*spi*/, _clock_ctrl, _codec_ctrl), _tree->subtree(mb_path / "dboards/A") ); |