FreeRTOS KConfig: Limit tick rate to 1000Hz

>1000Hz breaks portTICK_PERIOD_MS (see gitlab 4)

A working >1000Hz tick rate is possible with some changes, but beyond a
certain point it's dimishing returns to preempt tasks this often.
pull/37/merge
Angus Gratton 2016-10-06 10:06:01 +11:00
rodzic c12582c122
commit 1bae606ccc
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -39,7 +39,7 @@ endchoice
config FREERTOS_HZ
int "Tick rate (Hz)"
range 1 10000
range 1 1000
default 100
help
Select the tick rate at which FreeRTOS does pre-emptive context switching.