1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-28 07:46:37 -04:00

LimeSDR input: code cleanup

This commit is contained in:
f4exb 2017-09-30 19:05:16 +02:00
parent 7c558b15f5
commit 463abb637f

View File

@ -269,6 +269,8 @@ void LimeSDRInput::closeDevice()
return; return;
} }
if (m_running) { stop(); }
// destroy the stream // destroy the stream
LMS_DestroyStream(m_deviceShared.m_deviceParams->getDevice(), &m_streamId); LMS_DestroyStream(m_deviceShared.m_deviceParams->getDevice(), &m_streamId);
m_streamId.handle = 0; m_streamId.handle = 0;
@ -298,7 +300,7 @@ bool LimeSDRInput::start()
return false; return false;
} }
if (m_running) stop(); if (m_running) { stop(); }
applySettings(m_settings, true); applySettings(m_settings, true);