@@ -82,20 +82,21 @@ bl_iot_sdk("sdk") {
82
82
" PRINT_DEBUG=0" ,
83
83
]
84
84
85
+ defines += [ " PW_RPC_ENABLED=${ chip_enable_pw_rpc } " ]
85
86
if (chip_enable_pw_rpc ) {
86
87
include_dirs += [ " ${ examples_plat_dir } /common/rpc" ]
87
- defines += [ " PW_RPC_ENABLED=1" ]
88
88
defines += [ " DISABLE_PRINT=1" ]
89
- } else if (chip_build_libshell ) {
90
- include_dirs += [ " ${ examples_plat_dir } /common/plat" ]
89
+ } else {
90
+ if (chip_build_libshell ) {
91
+ include_dirs += [ " ${ examples_plat_dir } /common/plat" ]
92
+ }
91
93
}
92
94
93
- defines += [ " CHIP_DEVICE_CONFIG_ENABLE_ETHERNET=${ chip_enable_ethernet } " ]
94
-
95
95
if (chip_enable_wifi || chip_enable_ethernet ) {
96
96
include_dirs += [ " ${ examples_plat_dir } /bl702/lwipopts" ]
97
97
}
98
98
99
+ defines += [ " CHIP_DEVICE_CONFIG_ENABLE_ETHERNET=${ chip_enable_ethernet } " ]
99
100
if (chip_enable_ethernet ) {
100
101
defines += [ " CHIP_SYSTEM_CRYPTO_HEADER_RESERVE_SIZE=48" ]
101
102
}
@@ -133,14 +134,15 @@ bouffalolab_executable("lighting_app") {
133
134
defines = [
134
135
" APP_TASK_STACK_SIZE=2048" ,
135
136
" CHIP_UART_BAUDRATE=${ baudrate } " ,
136
- " BL702_ENABLE=1" ,
137
137
" START_ENTRY=bl702_main" ,
138
138
]
139
139
140
- if (enable_debug_frame_ptr ) {
141
- defines += [ " CONF_ENABLE_FRAME_PTR=1" ]
142
- }
143
-
140
+ defines += [ " CONF_ENABLE_FRAME_PTR=${ enable_debug_frame_ptr } " ]
141
+ defines +=
142
+ [ " CONFIG_BOUFFALOLAB_FACTORY_DATA_ENABLE=${ chip_enable_factory_data } " ]
143
+ defines += [
144
+ " CONFIG_BOUFFALOLAB_FACTORY_DATA_TEST=${ chip_enable_factory_data_test } " ,
145
+ ]
144
146
if (chip_config_network_layer_ble ) {
145
147
defines += [ " CHIP_DEVICE_CONFIG_ENABLE_CHIPOBLE=1" ]
146
148
}
@@ -149,14 +151,6 @@ bouffalolab_executable("lighting_app") {
149
151
defines += [ " BOOT_PIN_RESET=31" ]
150
152
}
151
153
152
- if (chip_enable_factory_data ) {
153
- defines += [ " CONFIG_BOUFFALOLAB_FACTORY_DATA_ENABLE=1" ]
154
- }
155
-
156
- if (chip_enable_factory_data_test ) {
157
- defines += [ " CONFIG_BOUFFALOLAB_FACTORY_DATA_TEST=1" ]
158
- }
159
-
160
154
if (" XT-ZB6-DevKit" == board ) {
161
155
defines += [ " XT_ZB6_DevKit" ]
162
156
} else if (" BL706-NIGHT-LIGHT" == board ) {
@@ -168,8 +162,8 @@ bouffalolab_executable("lighting_app") {
168
162
" ${ example_dir } /common/ZclCallbacks.cpp" ,
169
163
" ${ examples_plat_dir } /common/iot_sdk/aos_task.c" ,
170
164
" ${ examples_plat_dir } /common/iot_sdk/demo_pwm.c" ,
171
- " ${ examples_plat_dir } /common/iot_sdk/platform_port.c " ,
172
- " ${ examples_plat_dir } /common/iot_sdk/uart.c " ,
165
+ " ${ examples_plat_dir } /common/iot_sdk/platform_port.cpp " ,
166
+ " ${ examples_plat_dir } /common/iot_sdk/uart.cpp " ,
173
167
" ${ examples_plat_dir } /common/plat/LEDWidget.cpp" ,
174
168
" ${ examples_plat_dir } /common/plat/OTAConfig.cpp" ,
175
169
" ${ examples_plat_dir } /common/plat/main.cpp" ,
@@ -196,10 +190,6 @@ bouffalolab_executable("lighting_app") {
196
190
include_dirs += [ " ${ examples_plat_dir } /bl702/lwipopts" ]
197
191
}
198
192
199
- if (enable_psram ) {
200
- defines += [ " CFG_USE_PSRAM=1" ]
201
- }
202
-
203
193
if (defined (enable_cdc_module ) && enable_cdc_module ) {
204
194
defines += [ " CFG_USB_CDC_ENABLE" ]
205
195
}
@@ -238,9 +228,10 @@ bouffalolab_executable("lighting_app") {
238
228
}
239
229
}
240
230
231
+ defines += [ " CONFIG_ENABLE_CHIP_SHELL=${ chip_build_libshell } " ]
232
+ defines += [ " PW_RPC_ENABLED=${ chip_enable_pw_rpc } " ]
241
233
if (chip_enable_pw_rpc ) {
242
234
defines += [
243
- " PW_RPC_ENABLED=1" ,
244
235
" PW_RPC_ATTRIBUTE_SERVICE=1" ,
245
236
" PW_RPC_BUTTON_SERVICE=1" ,
246
237
" PW_RPC_DESCRIPTOR_SERVICE=1" ,
@@ -289,23 +280,24 @@ bouffalolab_executable("lighting_app") {
289
280
" ${ chip_root } /examples/common" ,
290
281
" ${ chip_root } /examples/common/pigweed/bouffalolab" ,
291
282
]
292
- } else if (chip_build_libshell ) {
293
- defines += [ " CONFIG_ENABLE_CHIP_SHELL=${ chip_build_libshell } " ]
294
-
295
- include_dirs += [
296
- " ${ chip_root } /src/lib/shell" ,
297
- " ${ chip_root } /examples/shell/shell_common/include" ,
298
- ]
283
+ } else {
284
+ if (chip_build_libshell ) {
285
+ include_dirs += [
286
+ " ${ chip_root } /src/lib/shell" ,
287
+ " ${ chip_root } /examples/shell/shell_common/include" ,
288
+ ]
299
289
300
- deps += [ " ${ chip_root } /examples/shell/shell_common:shell_common" ]
290
+ deps += [ " ${ chip_root } /examples/shell/shell_common:shell_common" ]
291
+ }
301
292
}
302
293
294
+ defines += [ " HEAP_MONITORING=${ enable_heap_monitoring } " ]
303
295
if (enable_heap_monitoring ) {
304
296
sources += [ " ${ examples_plat_dir } /common/plat/MemMonitoring.cpp" ]
305
- defines += [ " HEAP_MONITORING=1" ]
306
297
}
307
298
308
299
if (enable_psram ) {
300
+ defines += [ " CFG_USE_PSRAM=1" ]
309
301
ldscript = " ${ examples_plat_dir } /bl702/ldscripts/psram_flash.ld"
310
302
} else {
311
303
ldscript = " ${ examples_plat_dir } /bl702/ldscripts/flash.ld"
0 commit comments