admin管理员组

文章数量:1122832

I can't find the correct syntax to force the CY MCU ELF Tool to create a CRC-signed hex file that places the CRC at __cy_app_signature address that I specify in the linker script. I have added the following post-build instruction to my makefile:

POSTBUILD+=\
        $(CY_TOOL_cymcuelftool_EXE_ABS) -S $(MTB_TOOLS__OUTPUT_CONFIG_DIR)/$(APPNAME).elf CRC --output $(MTB_TOOLS__OUTPUT_CONFIG_DIR)/$(APPNAME)_crc.elf --hex $(MTB_TOOLS__OUTPUT_CONFIG_DIR)/$(APPNAME)_crc.hex && \
        $(CY_TOOL_cymcuelftool_EXE_ABS) -P $(MTB_TOOLS__OUTPUT_CONFIG_DIR)/$(APPNAME)_crc.elf --output $(MTB_TOOLS__OUTPUT_CONFIG_DIR)/$(APPNAME)_crc.cyacd2

This instruction creates a hex file called "MyApplication_crc.hex", but there is no CRC at the specified address visible when I view the hex file. Anyone see what I'm missing?

本文标签: makefileSyntax To Force CRC Placement in Hex FileStack Overflow