diff options
| author | Josh Blum <josh@joshknows.com> | 2010-12-30 12:18:45 -0800 | 
|---|---|---|
| committer | Josh Blum <josh@joshknows.com> | 2010-12-30 12:18:45 -0800 | 
| commit | 78cc4fc203aab11cc3fb667410a2291d3782a9e5 (patch) | |
| tree | 706bb5280c29612928bb31c53b5feb894a79bcf0 | |
| parent | 805ba0352e8a96dbf56c016d6b4406995328dd66 (diff) | |
| download | uhd-78cc4fc203aab11cc3fb667410a2291d3782a9e5.tar.gz uhd-78cc4fc203aab11cc3fb667410a2291d3782a9e5.tar.bz2 uhd-78cc4fc203aab11cc3fb667410a2291d3782a9e5.zip | |
usrp2: remove temp power up state hack, it seems to be fixed
| -rw-r--r-- | host/lib/usrp/usrp2/io_impl.cpp | 10 | 
1 files changed, 0 insertions, 10 deletions
| diff --git a/host/lib/usrp/usrp2/io_impl.cpp b/host/lib/usrp/usrp2/io_impl.cpp index cbc0a0817..f8a45f72b 100644 --- a/host/lib/usrp/usrp2/io_impl.cpp +++ b/host/lib/usrp/usrp2/io_impl.cpp @@ -259,16 +259,6 @@ void usrp2_impl::io_init(void){      //create new io impl      _io_impl = UHD_PIMPL_MAKE(io_impl, (num_recv_frames, send_frame_size, _data_transports.size())); -    //TODO temporary fix for weird power up state, remove when FPGA fixed -    { -        //send an initial packet to all transports -        tx_metadata_t md; md.end_of_burst = true; -        this->send( -            std::vector<const void *>(_data_transports.size(), NULL), 0, md, -            io_type_t::COMPLEX_FLOAT32, device::SEND_MODE_ONE_PACKET, 0 -        ); -    } -      //create a new pirate thread for each zc if (yarr!!)      for (size_t i = 0; i < _data_transports.size(); i++){          //lock the unlocked mutex (non-blocking) | 
