- 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
Mirela Chirica 2018-02-15 10:16:25 +02:00 committed by Ari Parkkila
parent 4a3541ef60
commit a35e1f8d6c
4 changed files with 11 additions and 11 deletions

View File

@ -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;