cope with unavailable flrig
This commit is contained in:
parent
bd23149ce5
commit
6bcb06a32f
1 changed files with 6 additions and 3 deletions
|
@ -21,8 +21,11 @@ fn main() {
|
|||
let mut changes_detected = false;
|
||||
|
||||
loop {
|
||||
let radio_data_new =
|
||||
flrig::get_radio_data(&settings.flrig.host, &settings.flrig.port).unwrap();
|
||||
let radio_data_new = match flrig::get_radio_data(&settings.flrig.host, &settings.flrig.port)
|
||||
{
|
||||
Ok(res) => res,
|
||||
Err(_) => continue,
|
||||
};
|
||||
|
||||
if radio_data_current.frequency != radio_data_new.frequency
|
||||
|| radio_data_current.mode != radio_data_new.mode
|
||||
|
|
Loading…
Reference in a new issue