1 /* 2 * Copyright (c) 2023 Cypress Semiconductor Corporation. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <stdint.h> 8 9 const uint8_t brcm_patchram_format = 0x01; 10 /* Configuration Data Records (Write_RAM) */ 11 #ifndef FW_DATBLOCK_SEPARATE_FROM_APPLICATION 12 const uint8_t brcm_patchram_buf[] = { 13 #include <bt_firmware.hcd.inc> 14 }; 15 16 const int brcm_patch_ram_length = sizeof(brcm_patchram_buf); 17 #endif /* FW_DATBLOCK_SEPARATE_FROM_APPLICATION */ 18