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

how to debug uvision in simulation

Hi,
I am using uvision 5 in windows 7 64 bit os. My device is FRDM KL46Z. In my device, i can debug any code. However, in simulation i can not debug. There is not any errors but in assembly line when i proceed with F11, i am trapping to some loop even when i did not reach the main yet. Is there someone who can use debugger with simulation?

Parents
  • Breakpoints works in simulation too even if the processor isn't supported.

    But you need to set the breakpoint early enough before the simulation reaches code that can't be correctly processed. So "run to main" will not work if the startup code contains references to unsupported hardware functionality.

    Have you tried to place breakpoints early in the startup code?

Reply
  • Breakpoints works in simulation too even if the processor isn't supported.

    But you need to set the breakpoint early enough before the simulation reaches code that can't be correctly processed. So "run to main" will not work if the startup code contains references to unsupported hardware functionality.

    Have you tried to place breakpoints early in the startup code?

Children