Update nanostack-hal-cmsis-rtos.

pull/2249/head
Seppo Takalo 2016-07-22 17:11:41 +03:00 committed by Russ Butler
parent 7f65b914a1
commit 475cda0639
2 changed files with 5 additions and 1 deletions

View File

@ -4,6 +4,10 @@
"nvm_cfstore": {
"help": "Use cfstore as a NVM storage. Else RAM simulation will be used",
"value": false
},
"event_loop_thread_stack_size": {
"help": "Define event-loop thread stack size.",
"value": 6144
}
}
}

View File

@ -16,7 +16,7 @@ static void event_loop_thread(const void *arg);
// 1K should be enough - it's what the SAM4E port uses...
// What happened to the instances parameter?
static osThreadDef(event_loop_thread, osPriorityNormal, /*1,*/ 6*1024);
static osThreadDef(event_loop_thread, osPriorityNormal, /*1,*/ MBED_CONF_NANOSTACK_HAL_EVENT_LOOP_THREAD_STACK_SIZE);
static osMutexDef(event);
static osThreadId event_thread_id;