OVMS3-idf/components/pthread/Kconfig

23 lines
576 B
Plaintext
Raw Normal View History

2017-08-28 15:41:32 +00:00
menu "PThreads"
config ESP32_PTHREAD_TASK_PRIO_DEFAULT
int "Default task priority"
range 0 255
default 5
help
Priority used to create new tasks with default pthread parameters.
config ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT
int "Default task stack size"
default 3072
2017-08-28 15:41:32 +00:00
help
Stack size used to create new tasks with default pthread parameters.
config PTHREAD_STACK_MIN
int "Minimum allowed pthread stack size"
default 768
help
Minimum allowed pthread stack size set in attributes passed to pthread_create
2017-08-28 15:41:32 +00:00
endmenu