This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Arm DS-5 v5.29.2 debug altera soc error

Hi, 

I'm using ds-5 to debug a bare-metal application on altera arria 10 soc, there is a error when debug.

licenses.rar

Can you tell me to solve the problem? thanks a lot.

Parents
  • Hi Anguo

    It looks like you have built your hello program to load and run at address 0x0, but the debugger was unable to download it to that addresses.  Perhaps there is no RAM at that address, or it is inaccessible for some reason.  You will need to check the memory map of your target board to identify some suitable ranges of RAM, then re-link your program to work at that address.  If you are using the Arm Compilation tools, you can link with the --ro-base=<address> switch, or use a scatter-file.  If you are using GCC, use a linker .ld script.

    Hope this helps

    Stephen
     

Reply
  • Hi Anguo

    It looks like you have built your hello program to load and run at address 0x0, but the debugger was unable to download it to that addresses.  Perhaps there is no RAM at that address, or it is inaccessible for some reason.  You will need to check the memory map of your target board to identify some suitable ranges of RAM, then re-link your program to work at that address.  If you are using the Arm Compilation tools, you can link with the --ro-base=<address> switch, or use a scatter-file.  If you are using GCC, use a linker .ld script.

    Hope this helps

    Stephen
     

Children