mirror of https://github.com/ARMmbed/mbed-os.git
- Removed extra whitespaces from AT prefix definitions. The format is modem specific and AT handler is handling whitespaces in case they are present
- Reverted the "smaller thread stack size for dispatcher thread". 1KB is not enough, was causing CMSIS-RTOS error: Stack underflow.pull/6082/head
parent
4a3541ef60
commit
a35e1f8d6c
|
@ -456,7 +456,7 @@ nsapi_error_t CellularConnectionUtil::start_dispatch()
|
|||
|
||||
MBED_ASSERT(!_queue_thread);
|
||||
|
||||
_queue_thread = new rtos::Thread(osPriorityNormal, 1024);
|
||||
_queue_thread = new rtos::Thread;
|
||||
if (!_queue_thread) {
|
||||
stop();
|
||||
return NSAPI_ERROR_NO_MEMORY;
|
||||
|
|
Loading…
Reference in New Issue