Skip to content

Commit 946a93a

Browse files
Disabled lcd and external flash in silabs_boards.gni for 917 NCP board
1 parent 66d2a86 commit 946a93a

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

scripts/examples/gn_silabs_example.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ else
195195
if [ "$2" = "rs9116" ]; then
196196
optArgs+="use_rs9116=true "
197197
elif [ "$2" = "SiWx917" ]; then
198-
optArgs+="use_SiWx917=true disable_lcd=true use_external_flash=false "
198+
optArgs+="use_SiWx917=true "
199199
elif [ "$2" = "wf200" ]; then
200200
optArgs+="use_wf200=true "
201201
else

third_party/silabs/silabs_board.gni

+6
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@ declare_args() {
6969
chip_enable_ble_rs911x = use_rs9116 || use_SiWx917
7070
}
7171

72+
if (use_SiWx917) {
73+
disable_lcd = true
74+
show_qr_code = false
75+
use_external_flash = false
76+
}
77+
7278
if (silabs_board == "") {
7379
silabs_board = getenv("SILABS_BOARD")
7480
}

0 commit comments

Comments
 (0)