Skip to content

Commit

Permalink
ipv4 build arg moved and update data modal for lighting app
Browse files Browse the repository at this point in the history
  • Loading branch information
Thirsrin committed Mar 9, 2023
1 parent ecd60f3 commit 95386f2
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
3 changes: 0 additions & 3 deletions examples/lighting-app/silabs/SiWx917/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,6 @@ declare_args() {
sl_wfx_config_softap = false
sl_wfx_config_scan = true

# Argument to Disable IPv4 for wifi(rs911)
chip_enable_wifi_ipv4 = false

# Argument to force enable WPA3 security on rs91x
rs91x_wpa3_only = false

Expand Down
3 changes: 2 additions & 1 deletion examples/lighting-app/silabs/efr32/build_for_wifi_args.gni
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ chip_enable_openthread = false
import("${chip_root}/src/platform/silabs/efr32/wifi_args.gni")

chip_enable_ota_requestor = true
app_data_model = "${chip_root}/examples/lighting-app/lighting-common"
app_data_model =
"${chip_root}/examples/lighting-app/silabs/efr32/data_model:silabs-lighting"
3 changes: 0 additions & 3 deletions examples/platform/silabs/efr32/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ declare_args() {
sl_wfx_config_softap = false
sl_wfx_config_scan = true

# Argument to Disable IPv4 for wifi(rs911)
chip_enable_wifi_ipv4 = false

# Argument to force enable WPA3 security on rs91x
rs91x_wpa3_only = false

Expand Down
4 changes: 4 additions & 0 deletions third_party/silabs/SiWx917_sdk.gni
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,10 @@ template("efr32_sdk") {

defines += board_defines

if (invoker.chip_enable_wifi_ipv4) {
defines += [ "CHIP_DEVICE_CONFIG_ENABLE_IPV4=1" ]
}

# Enabling led interface
if (use_wstk_leds) {
defines += [ "ENABLE_WSTK_LEDS" ]
Expand Down
3 changes: 3 additions & 0 deletions third_party/silabs/efr32_sdk.gni
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,9 @@ template("efr32_sdk") {
}

if (defined(invoker.chip_enable_wifi) && invoker.chip_enable_wifi) {
if (invoker.chip_enable_wifi_ipv4) {
defines += [ "CHIP_DEVICE_CONFIG_ENABLE_IPV4=1" ]
}
if (use_rs9116 || use_SiWx917) {
defines += [
"SL_HEAP_SIZE=32768",
Expand Down
3 changes: 3 additions & 0 deletions third_party/silabs/silabs_board.gni
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ declare_args() {
use_SiWx917 = false
use_rs911x_sockets = false
chip_enable_ble_rs911x = false

# Argument to Disable IPv4 for wifi(rs911)
chip_enable_wifi_ipv4 = false
}

declare_args() {
Expand Down

0 comments on commit 95386f2

Please sign in to comment.