summaryrefslogtreecommitdiff
path: root/apps/system/sudoku/Kconfig
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-08-11 19:27:48 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-08-11 19:27:48 -0600
commitdd6bca4b13853bacfce798d176a123e72f765437 (patch)
tree51f8899203353c533652d2785745c520c0390448 /apps/system/sudoku/Kconfig
parent78789700a2f4a7e6580b63e0ede824615f586456 (diff)
downloadnuttx-dd6bca4b13853bacfce798d176a123e72f765437.tar.gz
nuttx-dd6bca4b13853bacfce798d176a123e72f765437.tar.bz2
nuttx-dd6bca4b13853bacfce798d176a123e72f765437.zip
Add a Sudoku game
Diffstat (limited to 'apps/system/sudoku/Kconfig')
-rw-r--r--apps/system/sudoku/Kconfig27
1 files changed, 27 insertions, 0 deletions
diff --git a/apps/system/sudoku/Kconfig b/apps/system/sudoku/Kconfig
new file mode 100644
index 000000000..cdb28f4f3
--- /dev/null
+++ b/apps/system/sudoku/Kconfig
@@ -0,0 +1,27 @@
+#
+# For a description of the syntax of this configuration file,
+# see misc/tools/kconfig-language.txt.
+#
+
+config SYSTEM_SUDOKU
+ 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