Skip to content

Commit 1e4a952

Browse files
committed
examples/fbcon: Fix endchoice and help in Kconfig
This PR fixes the `endchoice` and `help` in the Kconfig for fbcon - #3029 (comment) This patch will fix these build errors: ```text apps/examples/fbcon/Kconfig:62: syntax error apps/examples/fbcon/Kconfig:172: unknown option "---help--" ``` https://github.com/lupyuen/nuttx-riscv64/actions/runs/13981663903/job/39147989438#step:5:158 Signed-off-by: Lup Yuen Lee <[email protected]>
1 parent 95c99d9 commit 1e4a952

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

examples/fbcon/Kconfig

+3-2
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ config EXAMPLES_FBCON_BPP_NX_DEFAULT
5858
config EXAMPLES_FBCON_CUSTOM_BPP
5959
bool "Choose custom BPP (must not be disabled in NX)"
6060

61+
endchoice # EXAMPLES_FBCON_BPP_SELECTION
62+
6163
choice EXAMPLES_FBCON_CUSTOM_BPP
6264
prompt "Custom Font pixel depth (BPP - Bits Per Pixel)"
6365
depends on EXAMPLES_FBCON_CUSTOM_BPP
@@ -93,7 +95,6 @@ config EXAMPLES_FBCON_32BPP
9395
depends on !NX_DISABLE_32BPP
9496

9597
endchoice # EXAMPLES_FBCON_CUSTOM_BPP
96-
endchoice # EXAMPLES_FBCON_BPP_SELECTION
9798

9899
comment "Console appearance"
99100

@@ -169,7 +170,7 @@ comment "FB Console App Escape code decoding"
169170
config EXAMPLES_FBCON_VT100_DECODE
170171
bool "Decode VT100 Escape Codes"
171172
default y
172-
---help--
173+
---help---
173174
Decode VT100 ESC codes - only minimal supporting functions
174175

175176
comment "FB Console spawn task configuration"

0 commit comments

Comments
 (0)