1。使用随附的 hcd2c.pl 文件生成 C 文件。
perl 脚本的示例命令是
>perl hcd2c.pl-n xxx.hcd 固件.c >
2。确保上面生成的 “C” 文件在语法上是正确的,并使用 “brcm_patchram_buf” 和 brcm_patch_ram_length 的名称来表示字节数组和字节数组长度
例如:c
onst uint8_t brcm_patchram_buf [] =;const int brcm_patch_ram_length = sizeof (brcm_patchram_buf); { << byte_array here >> }
3。将此 C 文件重命名为 w_bt_firmware_controller.c,然后放在固件路径中相应的芯片文件夹下。
1。使用随附的 hcd2c.pl 文件生成 C 文件。
perl 脚本的示例命令是
>perl hcd2c.pl-n xxx.hcd 固件.c >
2。确保上面生成的 “C” 文件在语法上是正确的,并使用 “brcm_patchram_buf” 和 brcm_patch_ram_length 的名称来表示字节数组和字节数组长度
例如:c
onst uint8_t brcm_patchram_buf [] =;const int brcm_patch_ram_length = sizeof (brcm_patchram_buf); { << byte_array here >> }
3。将此 C 文件重命名为 w_bt_firmware_controller.c,然后放在固件路径中相应的芯片文件夹下。
举报