Skip to content

Commit 475cda0

Browse files
Seppo Takaloc1728p9
authored andcommitted
Update nanostack-hal-cmsis-rtos.
1 parent 7f65b91 commit 475cda0

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

features/FEATURE_IPV6/nanostack-hal-mbed-cmsis-rtos/mbed_lib.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
"nvm_cfstore": {
55
"help": "Use cfstore as a NVM storage. Else RAM simulation will be used",
66
"value": false
7+
},
8+
"event_loop_thread_stack_size": {
9+
"help": "Define event-loop thread stack size.",
10+
"value": 6144
711
}
812
}
913
}

features/FEATURE_IPV6/nanostack-hal-mbed-cmsis-rtos/ns_event_loop.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ static void event_loop_thread(const void *arg);
1616

1717
// 1K should be enough - it's what the SAM4E port uses...
1818
// What happened to the instances parameter?
19-
static osThreadDef(event_loop_thread, osPriorityNormal, /*1,*/ 6*1024);
19+
static osThreadDef(event_loop_thread, osPriorityNormal, /*1,*/ MBED_CONF_NANOSTACK_HAL_EVENT_LOOP_THREAD_STACK_SIZE);
2020
static osMutexDef(event);
2121

2222
static osThreadId event_thread_id;

0 commit comments

Comments
 (0)