Hello,
if you proceed with the build as below, you will see a folder that is not a file in the format "[name].bin". So I'm going to modify the ".sct" file.
As shown in the code below, it is divided into LR_ROM1 and LR_EM_EEPROM, so I think this phenomenon occurs when build.
Cortex-M4 application flash area LR_IROM1 FLASH_START FLASH_SIZE { ER_FLASH_VECTORS +0 { * (RESET, +FIRST) } ER_FLASH_CODE +0 FIXED { * (InRoot$$Sections) * (+RO) } ER_RAM_VECTORS RAM_START UNINIT { * (RESET_RAM, +FIRST) } RW_RAM_DATA +0 { * (.cy_ramfunc) * (+RW, +ZI) } ; Place variables in the section that should not be initialized during the ; device startup. RW_IRAM1 +0 UNINIT { * (.noinit) } ; Application heap area (HEAP) ARM_LIB_HEAP +0 EMPTY ((RAM_START+RAM_SIZE)-AlignExpr(ImageLimit(RW_IRAM1), 8)-STACK_SIZE) { } ; Stack region growing down ARM_LIB_STACK (RAM_START+RAM_SIZE) EMPTY -STACK_SIZE { } } ; Emulated EEPROM Flash area LR_EM_EEPROM EM_EEPROM_START EM_EEPROM_SIZE { .cy_em_eeprom +0 { * (.cy_em_eeprom) } }
Is there a way to put this together?
Thankyou for reply
4353.TOOLCHAIN_ARM.zip