Question
Loading object code error
Hello!
THis is my SCT file
; *************************************************************
; *** Scatter-Loading Description File generated by uVision ***
; *************************************************************
LR_IROM1 0x08000000 0x00100000 { ; load region size_region
ER_IROM1 0x08000000 0x00100000 { ; load address = execution address
*.o (RESET, +First)
*(InRoot$$Sections)
.ANY (+RO)
}
RW_IRAM1 0x20000000 0x00050000 { ; RW data
.ANY (+RW +ZI)
}
}
LR_EROM1 0x90000000 0x2000000 { ; load region size_region
ER_EROM1 0x90000000 0x2000000 { ; load address = execution address
*.o (ExtFlashSection)
;*.o (TextFlashSection)
*.o (FontFlashSection)
}
}
when ExtFlashSection and FontFlashSection are commented (disabled), system loading is OK.
But if these sections are not commented (enabled, written like I quoted) - I get error;
on this stage
I get this error
What's wrong in my SCT file or other settings?
My IC is STM32h743B.
On project for STM32F746B this porblem not occured.