1 /*
2  * Copyright 2023-2024 NXP
3  * All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  *
7  */
8 
9 
10 #include <stdint.h>
11 
12 #if defined(CONFIG_NXP_MONOLITHIC_IEEE802154)
13 __attribute__ ((__section__(".fw_cpu2_combo"), used))
14 const uint8_t fw_cpu2_combo[] = {
15     #include <rw61x_combo_fw.bin.inc>
16 };
17 #elif defined(CONFIG_NXP_MONOLITHIC_BT)
18 __attribute__ ((__section__(".fw_cpu2_ble"), used))
19 const uint8_t fw_cpu2_ble[] = {
20     #include <rw61x_ble_fw.bin.inc>
21 };
22 #endif
23