Add parsing for blank lines
All checks were successful
Basic Cargo Checks / docker-check (push) Successful in 1m38s
Basic Cargo Checks / docker-build (push) Successful in 2m1s

This commit is contained in:
Blizzard Finnegan 2023-06-19 14:52:24 -04:00
parent ab560b926a
commit 6280603232
Signed by: blizzardfinnegan
GPG key ID: 61C1E13067E0018E

View file

@ -365,7 +365,7 @@ impl Device{
log::info!("Serial found for device {}",self.serial);
break;
},
Response::DebugInit => { continue; }
Response::DebugInit | Response::Empty | Response::EmptyNewline => { continue; }
_ => {
log::error!("Bad value: {:?}",return_value);
todo!();