Add parsing for blank lines
This commit is contained in:
parent
ab560b926a
commit
6280603232
1 changed files with 1 additions and 1 deletions
|
@ -365,7 +365,7 @@ impl Device{
|
||||||
log::info!("Serial found for device {}",self.serial);
|
log::info!("Serial found for device {}",self.serial);
|
||||||
break;
|
break;
|
||||||
},
|
},
|
||||||
Response::DebugInit => { continue; }
|
Response::DebugInit | Response::Empty | Response::EmptyNewline => { continue; }
|
||||||
_ => {
|
_ => {
|
||||||
log::error!("Bad value: {:?}",return_value);
|
log::error!("Bad value: {:?}",return_value);
|
||||||
todo!();
|
todo!();
|
||||||
|
|
Loading…
Add table
Reference in a new issue