Avoid some bound to fail Hamlib API calls

This commit is contained in:
Bill Somerville
2020-05-27 20:05:16 +01:00
parent 9ed7e5b903
commit 12993cb266
3 changed files with 7 additions and 4 deletions
+2 -2
View File
@@ -172,14 +172,14 @@ void TransceiverBase::shutdown ()
do_tx_frequency (0, UNK, true);
do_post_tx_frequency (0, UNK);
}
do_stop ();
do_post_stop ();
}
catch (...)
{
// don't care about exceptions
}
}
do_stop ();
do_post_stop ();
actual_ = TransceiverState {};
requested_ = TransceiverState {};
}