1 /* 2 * Copyright (c) 2019, Cypress Semiconductor Corporation, All Rights Reserved 3 * SPDX-License-Identifier: LicenseRef-PBL 4 * 5 * This file and the related binary are licensed under the 6 * Permissive Binary License, Version 1.0 (the "License"); 7 * you may not use these files except in compliance with the License. 8 * 9 * You may obtain a copy of the License here: 10 * LICENSE-permissive-binary-license-1.0.txt and at 11 * https://www.mbed.com/licenses/PBL-1.0 12 * 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 #include "wiced_resource.h" 17 18 #ifndef WLAN_MFG_FIRMWARE 19 #if defined(CY_STORAGE_WIFI_DATA) 20 CY_SECTION_WHD(CY_STORAGE_WIFI_DATA) __attribute__((used)) 21 #endif 22 const unsigned char wifi_firmware_image_data[419799] = { 23 #include <cyw43xx_fw_blob.inc> 24 }; 25 const resource_hnd_t wifi_firmware_image = { RESOURCE_IN_MEMORY, 419799, {.mem = { (const char *) wifi_firmware_image_data }}}; 26 #endif /* !WLAN_MFG_FIRMWARE */ 27