xiaoxiang781216 commented on code in PR #3125: URL: https://github.com/apache/nuttx-apps/pull/3125#discussion_r2200542440
########## games/match4/Kconfig: ########## @@ -0,0 +1,84 @@ +# +# For a description of the syntax of this configuration file, +# see the file kconfig-language.txt in the NuttX tools repository. +# + +config GAMES_MATCH4 + bool "Match 4 Game" + default n + ---help--- + Enable Match 4 game. + +if GAMES_MATCH4 + +config GAMES_MATCH4_PROGNAME + string "Program name" + default "match" + ---help--- + This is the name of the program that will be used when the NSH ELF + program is installed. + +config GAMES_MATCH4_PRIORITY + int "Match 4 Game task priority" + default 100 + +config GAMES_MATCH4_STACKSIZE + int "Match 4 Game stack size" + default DEFAULT_TASK_STACKSIZE + +config DEBUG_MATCH4_GAME Review Comment: ```suggestion config MATCH4_GAME_DEBUG ``` ########## games/match4/Kconfig: ########## @@ -0,0 +1,84 @@ +# +# For a description of the syntax of this configuration file, +# see the file kconfig-language.txt in the NuttX tools repository. +# + +config GAMES_MATCH4 + bool "Match 4 Game" + default n + ---help--- + Enable Match 4 game. + +if GAMES_MATCH4 + +config GAMES_MATCH4_PROGNAME + string "Program name" + default "match" + ---help--- + This is the name of the program that will be used when the NSH ELF + program is installed. + +config GAMES_MATCH4_PRIORITY + int "Match 4 Game task priority" + default 100 + +config GAMES_MATCH4_STACKSIZE + int "Match 4 Game stack size" + default DEFAULT_TASK_STACKSIZE + +config DEBUG_MATCH4_GAME + bool "Print board status to the serial console for debugging" + default n + +config GAMES_MATCH4_LED_MATRIX_PATH + string "LED matrix path" + default "/dev/leds0" + ---help--- + Path of the led matrix + +config GAMES_MATCH4_LED_MATRIX_ROWS + int "LED Matrix row count" + default 8 + +config GAMES_MATCH4_LED_MATRIX_COLS + int "LED Matrix column count" + default 8 + +# +# Input Device Selection +# + +choice INPUT_METHOD Review Comment: ```suggestion choice ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org