Skip to content

Commit

Permalink
[Silabs] Using Wiseconnect for 917NCP (#28834)
Browse files Browse the repository at this point in the history
* using wiseconnect for 917NCP

* Adds fix for 917NCP and rs9116 power cycle issue

* Updates matter_support
  • Loading branch information
silabs-srishylam authored and pull[bot] committed Oct 19, 2023
1 parent edc23eb commit 1018606
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 16 deletions.
5 changes: 1 addition & 4 deletions examples/platform/silabs/efr32/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,10 @@ if (chip_enable_wifi) {
assert(use_rs9116 || use_wf200 || use_SiWx917)
import("${chip_root}/src/platform/silabs/wifi_args.gni")

if (use_rs9116) {
if (use_rs9116 || use_SiWx917) {
wiseconnect_sdk_root =
"${chip_root}/third_party/silabs/wiseconnect-wifi-bt-sdk"
import("rs911x/rs911x.gni")
} else if (use_SiWx917) {
wisemcu_sdk_root = "${chip_root}/third_party/silabs/wisemcu-wifi-bt-sdk"
import("rs911x/rs9117.gni")
}
if (use_wf200) {
import("wf200/wf200.gni")
Expand Down
8 changes: 0 additions & 8 deletions examples/platform/silabs/efr32/rs911x/rsi_if.c
Original file line number Diff line number Diff line change
Expand Up @@ -628,14 +628,6 @@ void wfx_rsi_task(void * arg)
hasNotifiedIPV4 = false;
}
#endif /* CHIP_DEVICE_CONFIG_ENABLE_IPV4 */
/*
* Checks if the IPv6 event has been notified, if not invoke the nd6_tmr,
* which starts the duplicate address detectation.
*/
if (!hasNotifiedIPV6)
{
nd6_tmr();
}
/*
* Checks if the assigned IPv6 address is preferred by evaluating
* the first block of IPv6 address ( block 0)
Expand Down
4 changes: 1 addition & 3 deletions third_party/silabs/efr32_sdk.gni
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,8 @@ import("${chip_root}/src/app/icd/icd.gni")
import("${chip_root}/src/lib/lib.gni")
import("silabs_board.gni")

if (use_rs9116) {
if (use_rs9116 || use_SiWx917) {
wifi_sapi_root = "${chip_root}/third_party/silabs/wiseconnect-wifi-bt-sdk"
} else {
wifi_sapi_root = "${chip_root}/third_party/silabs/wisemcu-wifi-bt-sdk"
}

declare_args() {
Expand Down
2 changes: 1 addition & 1 deletion third_party/silabs/matter_support

0 comments on commit 1018606

Please sign in to comment.