a89b86a99e
- Added Cmakefiles for modules\hal_infineon\btstack-integration\, where handle generation of Bluetooth include blob from HCD binary. - Supported following device/modules: -- CYW43012/MURATA-1LV module -- CYW4343W/MURATA-1DX module -- CYW43439/MURATA-1YN module -- CYW4373/STERLING-LWB5plus module - Added possibility to use user provided BT Firmware HCD file via kconfig (path must be defined in CONFIG_CYW43XX_CUSTOM_FIRMWARE_HCD_BLOB) - Updated top makefile Signed-off-by: Nazar Palamar <nazar.palamar@infineon.com>
18 lines
450 B
C
18 lines
450 B
C
/*
|
|
* Copyright (c) 2023 Cypress Semiconductor Corporation.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
|
|
const uint8_t brcm_patchram_format = 0x01;
|
|
/* Configuration Data Records (Write_RAM) */
|
|
#ifndef FW_DATBLOCK_SEPARATE_FROM_APPLICATION
|
|
const uint8_t brcm_patchram_buf[] = {
|
|
#include <bt_firmware.hcd.inc>
|
|
};
|
|
|
|
const int brcm_patch_ram_length = sizeof(brcm_patchram_buf);
|
|
#endif /* FW_DATBLOCK_SEPARATE_FROM_APPLICATION */
|