Skip to content

Commit f166d96

Browse files
committed
connectivity_framework: adapt rw61x platform code for zephyr
Fix issue during init due to the monolithic load service. Signed-off-by: Axel Le Bourhis <axel.lebourhis@nxp.com>
1 parent 9000222 commit f166d96

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mcux/middleware/mcux-sdk-middleware-connectivity-framework/platform/rw61x/fwk_platform_coex.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@
2222
#endif
2323

2424
#if (defined gPlatformMonolithicApp_d && (gPlatformMonolithicApp_d != 0))
25-
#define WIFI_LD_TARGET LOAD_WIFI_FW_MONOLITHIC
25+
#define WIFI_LD_TARGET LOAD_WIFI_FIRMWARE
2626
#ifndef WIFI_FW_ADDRESS
2727
extern const uint32_t fw_cpu1[];
2828
#define WIFI_FW_ADDRESS ((uint32_t)&fw_cpu1[0])
2929
#endif
30-
#define BLE_LD_TARGET LOAD_BLE_FW_MONOLITHIC
30+
#define BLE_LD_TARGET LOAD_BLE_FIRMWARE
3131
#ifndef BLE_FW_ADDRESS
3232
extern const uint32_t fw_cpu2_ble[];
3333
#define BLE_FW_ADDRESS ((uint32_t)&fw_cpu2_ble[0])
3434
#endif
35-
#define COMBO_LD_TARGET LOAD_15D4_FW_MONOLITHIC
35+
#define COMBO_LD_TARGET LOAD_15D4_FIRMWARE
3636
#ifndef COMBO_FW_ADDRESS
3737
extern const uint32_t fw_cpu2_combo[];
3838
#define COMBO_FW_ADDRESS ((uint32_t)&fw_cpu2_combo[0])

0 commit comments

Comments
 (0)