This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

LCDK C6748 -> tick stays 0

Other Parts Discussed in Thread: TMS320C6748

Hello

I'm currently trying to run the Typical example on a LCDK C6748 but it seems that the system tick isn't running properly.
What I do is the following:

  1. Import of the following project: TI Resource Explorer -> SYS/BIOS -> C6000 -> C674x Floating-point DSP -> LCDKC6748 -> Typical
  2. Build the project
  3. Debug the project
  4. Add breakpoints at line 19 (System_printf("enter taskFxn()\n");) and at line 23 (System_printf("exit taskFxn()\n");)
  5. After hitting the resume button, the program stops at the first breakpoint (-> as expected)
  6. However, after hitting the resume button once more, the program seems to run forever and doesn't stop at the second break point.
  7. If I pause manually, the debugger stops somewhere in the Idle_loop() and I can see a clock module with ticks=0 and a timer module:



    Also, the TIMER64P0 seems to be active and its interrupt is pending:

Does anyone see what I'm doing wrong?
I'm using CCS  Version: 5.5.0.00077

Any help is appreciated!

Ramun

PS: Another thing that's wired for a demo project is that I need to add System_flush() after the System_printf() functions in order to actually see the output on the Console...