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

Problem debugging

I have a code that I'm trying to debug with Keil uvision4 .

I set up the project for simulator debugger. However, when I click "Debug" it always goes to the .s file but never enters the c code

Parents
  • So hit the stop button and see where it is stuck!

    Chances are it is in some SystemInit() code looping for some hardware that doesn't exist, ie clocks, PLLs, etc.

    Don't use the simulator in areas it doesn't fully support, better yet use real hardware.

Reply
  • So hit the stop button and see where it is stuck!

    Chances are it is in some SystemInit() code looping for some hardware that doesn't exist, ie clocks, PLLs, etc.

    Don't use the simulator in areas it doesn't fully support, better yet use real hardware.

Children