nuttx-apps/system/sudoku/Kconfig

28 lines
520 B
Plaintext
Raw Normal View History

2014-08-12 03:27:48 +02:00
#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
2014-08-12 03:27:48 +02:00
#
2015-04-07 21:23:39 +02:00
menuconfig SYSTEM_SUDOKU
2014-08-12 03:27:48 +02:00
bool "Sudoku"
default n
select SYSTEM_READLINE
---help---
Enable the sudoku game.
if SYSTEM_SUDOKU
config SYSTEM_SUDOKU_STACKSIZE
int "Sudoku stack size"
default 1536
---help---
The size of stack allocated for the Sudoku task.
config SYSTEM_SUDOKU_PRIORITY
int "Sudoku priority"
default 100
---help---
The priority of the Sudoku task.
endif