FreeRTOS thread local storage config: If using WiFi this must be >0

pull/21/head
Angus Gratton 2016-09-06 11:15:28 +10:00
rodzic 166d876d90
commit b8fc0c9511
1 zmienionych plików z 5 dodań i 2 usunięć

Wyświetl plik

@ -75,13 +75,16 @@ endchoice
config FREERTOS_THREAD_LOCAL_STORAGE_POINTERS config FREERTOS_THREAD_LOCAL_STORAGE_POINTERS
int "Amount of thread local storage pointers" int "Amount of thread local storage pointers"
range 0 256 range 0 256 if !WIFI_ENABLED
default 0 range 1 256 if WIFI_ENABLED
default 1
help help
FreeRTOS has the ability to store per-thread pointers in the task FreeRTOS has the ability to store per-thread pointers in the task
control block. This controls the amount of pointers available; control block. This controls the amount of pointers available;
0 turns off this functionality. 0 turns off this functionality.
If using the WiFi stack, this value must be at least 1.
#This still needs to be implemented. #This still needs to be implemented.
choice FREERTOS_PANIC choice FREERTOS_PANIC
prompt "Panic handler behaviour" prompt "Panic handler behaviour"