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_WIFI) 13 __attribute__ ((__section__(".fw_cpu1"), used)) 14 const uint8_t fw_cpu1[] = { 15 #include <rw61x_wifi_fw.bin.inc> 16 }; 17 18 const unsigned char *wlan_fw_bin = (const unsigned char *)(void *)&fw_cpu1[0]; 19 const unsigned int wlan_fw_bin_len = sizeof(fw_cpu1); 20 #endif 21