lib: cmsis_v2: increase stack sizes if coverage

Set to 4096, coverage targets have lots of RAM.

Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
Andrew Boie 2019-05-02 08:32:02 -07:00 committed by Anas Nashif
commit 8502a2ea73

View file

@ -38,12 +38,14 @@ config CMSIS_V2_THREAD_DYNAMIC_MAX_COUNT
config CMSIS_V2_THREAD_MAX_STACK_SIZE config CMSIS_V2_THREAD_MAX_STACK_SIZE
int "Max stack size threads can be allocated in CMSIS RTOS V2 application" int "Max stack size threads can be allocated in CMSIS RTOS V2 application"
default 4096 if COVERAGE
default 512 default 512
help help
Mention max stack size threads can be allocated in CMSIS RTOS V2 application. Mention max stack size threads can be allocated in CMSIS RTOS V2 application.
config CMSIS_V2_THREAD_DYNAMIC_STACK_SIZE config CMSIS_V2_THREAD_DYNAMIC_STACK_SIZE
int "Dynamic stack size threads are allocated in CMSIS RTOS V2 application" int "Dynamic stack size threads are allocated in CMSIS RTOS V2 application"
default 4096 if COVERAGE
default 512 default 512
help help
Mention dynamic stack size threads are allocated in CMSIS RTOS V2 application. Mention dynamic stack size threads are allocated in CMSIS RTOS V2 application.