Files
2018-09-13 15:34:54 +08:00

23 lines
525 B
Plaintext

menu "PThreads"
config ENABLE_PTHREAD
bool "Enable pthread"
default n
help
Enable this option and then pthread is to be used.
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
help
Stack size used to create new tasks with default pthread parameters.
endmenu