mirror of https://github.com/ARMmbed/mbed-os.git
Cellular: fix athandler to use correct timeout in case of multiple urc's
Start time was not updated when multiple urc's were found and so timeout was set to zero. Now that start time is updated, timeout is correct.pull/10812/head
parent
fc645bc3ed
commit
6b11ca1371
|
@ -320,8 +320,8 @@ void ATHandler::process_oob()
|
|||
reset_buffer(); // consume anything that could not be handled
|
||||
break;
|
||||
}
|
||||
_start_time = rtos::Kernel::get_ms_count();
|
||||
}
|
||||
_start_time = rtos::Kernel::get_ms_count();
|
||||
}
|
||||
_at_timeout = timeout;
|
||||
tr_debug("AT OoB done");
|
||||
|
|
Loading…
Reference in New Issue