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

project from MDK3.x in MDK4.x migrating problem

Hi!

I'm trying to migrate my project from ARM MDK 3.24 to ARM MDK 4.10.

Compilation goes ok, but when I try to debug the project, it doesn't go into main().
when trying to execute the "BX R0" instruction in startup.s, here:

; Enter the C code

                IMPORT  __main
                LDR     R0, =__main
                BX      R0


it goes to SWI handler and loops forever there.

Is there a solution for this?

0