acassis commented on code in PR #3010: URL: https://github.com/apache/nuttx-apps/pull/3010#discussion_r1970069918
########## games/brickmatch/Kconfig: ########## @@ -33,6 +33,39 @@ config GAMES_BRICKMATCH_STACKSIZE int "Brickmatch Game stack size" default DEFAULT_TASK_STACKSIZE +# +# Output Device Selection +# + +choice + prompt "Output Device (LED Matrix, SPI Screen, etc)" + default GAMES_BRICKMATCH_USE_SPI_SCREEN + +config GAMES_BRICKMATCH_USE_SPI_SCREEN Review Comment: ```suggestion config GAMES_BRICKMATCH_USE_LCD_SCREEN ########## games/brickmatch/Kconfig: ########## @@ -33,6 +33,39 @@ config GAMES_BRICKMATCH_STACKSIZE int "Brickmatch Game stack size" default DEFAULT_TASK_STACKSIZE +# +# Output Device Selection +# + +choice + prompt "Output Device (LED Matrix, SPI Screen, etc)" + default GAMES_BRICKMATCH_USE_SPI_SCREEN + +config GAMES_BRICKMATCH_USE_SPI_SCREEN + bool "SPI Screen as Output" Review Comment: ```suggestion bool "LCD Screen as Output (Also APA102 Matrix as LCD Interface)" ########## games/brickmatch/Kconfig: ########## @@ -33,6 +33,39 @@ config GAMES_BRICKMATCH_STACKSIZE int "Brickmatch Game stack size" default DEFAULT_TASK_STACKSIZE +# +# Output Device Selection +# + +choice + prompt "Output Device (LED Matrix, SPI Screen, etc)" + default GAMES_BRICKMATCH_USE_SPI_SCREEN Review Comment: ```suggestion default GAMES_BRICKMATCH_USE_LCD_SCREEN -- 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