2014-08-12 03:27:48 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:14:53 +02:00
|
|
|
# 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
|