mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-21 17:16:29 +08:00
23 lines
525 B
Plaintext
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
|