@@ -21,16 +21,13 @@ import("${chip_root}/src/app/icd/icd.gni")
21
21
import (" ${ chip_root } /src/lib/lib.gni" )
22
22
import (" silabs_board.gni" )
23
23
24
- if (use_rs9116 ) {
25
- wifi_sapi_root = " ${ chip_root } /third_party/silabs/wiseconnect-wifi-bt-sdk"
26
- } else if (use_SiWx917 ) {
27
- wifi_sdk_root = " ${ chip_root } /third_party/silabs/wifi_sdk"
28
- }
29
-
30
24
declare_args () {
31
25
# Location of the efr32 SDK.
32
26
efr32_sdk_root = " ${ chip_root } /third_party/silabs/gecko_sdk"
33
27
sdk_support_root = " ${ chip_root } /third_party/silabs/matter_support"
28
+ wiseconnect_sdk_root =
29
+ " ${ chip_root } /third_party/silabs/wiseconnect-wifi-bt-sdk"
30
+ wifi_sdk_root = " ${ chip_root } /third_party/silabs/wifi_sdk"
34
31
35
32
# Build openthread with prebuilt silabs lib
36
33
use_silabs_thread_lib = false
@@ -72,9 +69,19 @@ declare_args() {
72
69
# Use SLC generated files
73
70
slc_reuse_files = false
74
71
}
72
+ examples_plat_dir = " ${ chip_root } /examples/platform/silabs/efr32"
73
+ silabs_plat_efr32_wifi_dir = " ${ chip_root } /src/platform/silabs/efr32/wifi"
75
74
76
75
assert (efr32_sdk_root != " " , " efr32_sdk_root must be specified" )
77
76
77
+ if (use_rs9116 ) {
78
+ assert (wiseconnect_sdk_root != " " , " wiseconnect_sdk_root must be specified" )
79
+ }
80
+
81
+ if (use_SiWx917 ) {
82
+ assert (wifi_sdk_root != " " , " wifi_sdk_root must be specified" )
83
+ }
84
+
78
85
declare_args () {
79
86
sl_ot_libs_path = " ${ efr32_sdk_root } /protocol/openthread"
80
87
sl_ot_platform_abstraction =
@@ -228,7 +235,7 @@ template("efr32_sdk") {
228
235
229
236
if (chip_enable_ble_rs911x ) {
230
237
if (use_rs9116 ) {
231
- _include_dirs += [ " ${ wifi_sapi_root } /sapi/include" ]
238
+ _include_dirs += [ " ${ wiseconnect_sdk_root } /sapi/include" ]
232
239
} else {
233
240
_include_dirs += [ " ${ wifi_sdk_root } /components/si91x/ble/inc" ]
234
241
}
@@ -750,10 +757,10 @@ template("efr32_sdk") {
750
757
if (chip_enable_ble_rs911x ) {
751
758
if (use_rs9116 ) {
752
759
sources += [
753
- " ${ wifi_sapi_root } /sapi/bluetooth/rsi_ble_gap_apis.c" ,
754
- " ${ wifi_sapi_root } /sapi/bluetooth/rsi_ble_gatt_apis.c" ,
755
- " ${ wifi_sapi_root } /sapi/bluetooth/rsi_bt_common_apis.c" ,
756
- " ${ wifi_sapi_root } /sapi/driver/rsi_bt_ble.c" ,
760
+ " ${ wiseconnect_sdk_root } /sapi/bluetooth/rsi_ble_gap_apis.c" ,
761
+ " ${ wiseconnect_sdk_root } /sapi/bluetooth/rsi_ble_gatt_apis.c" ,
762
+ " ${ wiseconnect_sdk_root } /sapi/bluetooth/rsi_bt_common_apis.c" ,
763
+ " ${ wiseconnect_sdk_root } /sapi/driver/rsi_bt_ble.c" ,
757
764
]
758
765
} else {
759
766
sources += [
0 commit comments