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 in starting the project

I am using tiva c launch pad for my project.I have copied my startup file in my project and then wrote my code.When I start to debug my project the control remains in the start up file in reset handler section and never goes in my main program.
Please help.

Parents
  • If the processor isn't fully supported by the simulator, then you can get stuck in loops because the simulator doesn't understand that some state bit is expected to change value.

    An example is when the hardware initializes the PLL and then checks a bit to see when the PLL has properly synchronized - the simulator then must wait some arbitrary time before toggling this bit or you'll get stuck forever.

Reply
  • If the processor isn't fully supported by the simulator, then you can get stuck in loops because the simulator doesn't understand that some state bit is expected to change value.

    An example is when the hardware initializes the PLL and then checks a bit to see when the PLL has properly synchronized - the simulator then must wait some arbitrary time before toggling this bit or you'll get stuck forever.

Children