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.
This commit is contained in:
Angus Gratton
2016-10-06 10:06:01 +11:00
parent c12582c122
commit 1bae606ccc

View File

@@ -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.