nuttx-apps/testing/sched/timerjitter/Kconfig
simbit18 a0dfd187d8 [Kconfig style] Fix Kconfig style
Remove spaces from Kconfig files
Add TABs
Replace help => ---help---
Remove extra TABs

Signed-off-by: simbit18 <simbit18@gmail.com>
2025-02-25 09:27:14 +01:00

22 lines
515 B
Text

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config TESTING_TIMERJITTER
bool "timerjitter testing"
default n
---help---
timerjitter helps profiling timer accuracy and real-time performance.
if TESTING_TIMERJITTER
config TESTING_TIMERJITTER_PRIORITY
int "Priority of timerjitter process"
default 100
config TESTING_TIMERJITTER_STACKSIZE
int "Stack size of timerjitter process"
default DEFAULT_TASK_STACKSIZE
endif