1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 13:47:01 -04:00

HackRF plugins: correct start/stop sequences

This commit is contained in:
f4exb
2017-01-11 01:21:22 +01:00
parent d1696365d7
commit 201695bb67
4 changed files with 12 additions and 12 deletions
@@ -67,11 +67,11 @@ void HackRFOutputThread::run()
{
hackrf_error rc;
m_running = true;
m_startWaiter.wakeAll();
rc = (hackrf_error) hackrf_start_tx(m_dev, tx_callback, this);
m_running = true;
m_startWaiter.wakeAll();
if (rc != HACKRF_SUCCESS)
{
qCritical("HackRFOutputThread::run: failed to start HackRF Tx: %s", hackrf_error_name(rc));