hackrf: replace non-portable usleep with boost sleep

This commit is contained in:
Dimitri Stolnikov 2013-05-02 23:08:32 +02:00
parent 59ceddbb74
commit 2d9e29ee46
2 changed files with 6 additions and 2 deletions

View File

@ -34,6 +34,7 @@
#include <boost/format.hpp>
#include <boost/detail/endian.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/thread/thread.hpp>
#include <gnuradio/gr_io_signature.h>
@ -313,7 +314,8 @@ bool hackrf_sink_c::stop()
while ( hackrf_is_streaming( _dev ) );
/* FIXME: hackrf_stop_tx should wait until the device is ready for a start */
usleep(100000); /* required if we want to immediately start() again */
/* required if we want to immediately start() again */
boost::this_thread::sleep( boost::posix_time::milliseconds(100) );
return ! (bool) hackrf_is_streaming( _dev );
}

View File

@ -34,6 +34,7 @@
#include <boost/format.hpp>
#include <boost/detail/endian.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/thread/thread.hpp>
#include <stdexcept>
#include <iostream>
@ -276,7 +277,8 @@ bool hackrf_source_c::stop()
while ( hackrf_is_streaming( _dev ) );
/* FIXME: hackrf_stop_rx should wait until the device is ready for a start */
usleep(100000); /* required if we want to immediately start() again */
/* required if we want to immediately start() again */
boost::this_thread::sleep( boost::posix_time::milliseconds(100) );
return ! (bool) hackrf_is_streaming( _dev );
}