Hello,
I'm using ARM Development studio, for now I'm running the 30 day trial version. I'm trying to debug Cortex M7 processor with FVP. I'm unable to debug the code because of the problem with Image entry point. I'm loading the .axf file generated as output file in debug configurations.
I'd really appreciate if somebody would help me with settings with respect to image layout or anything I might be missing. Thank you.
Hi,My name is Stephen and I work at Arm.The main problem here is not with the image entry point, but with the address to which you are trying to load the image.There is no RAM present at address 0x80000000 in the Cortex-M7 FVP. For its memory map see:developer.arm.com/.../MPS2---memory-map-for-models-without-the-Armv8-M-additionsI suggest that you start with a ready-made example that works out-of-the-box, e.g. the "startup_Cortex-M7_AC6" example. There are other RTOS-based ready-made examples too that will work on an M7, e.g. "RTX5_Cortex-M3_Blinky".To import these examples into your workspace:
For instructions on how to run and debug the examples, please see their readme.html files.Hope this helpsStephen