1 /*
2  * Copyright 2023-2024 NXP
3  * All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  *
7  */
8 
9 #include <stdint.h>
10 #include <osa.h>
11 
12 #if defined(SD8978)
13 
14 #if defined(CONFIG_BT_IND_DNLD)
15 
16 const uint8_t fw_cpu2[] = {
17 #include <uartIW416_bt.bin.inc>
18 };
19 
20 const unsigned char *bt_fw_bin   = (const unsigned char *)(void *)&fw_cpu2[0];
21 const unsigned int bt_fw_bin_len = sizeof(fw_cpu2);
22 
23 #endif
24 
25 #endif
26