Hi Guys,
CCS v 6.2(compiler version = TI v15.12.3.LTS)
TMX320F28075 Control Card
control Suite v 3.4.1
My program : Cla Task 1 is triggered by Timer 0 every one second and inside cla task 1 a variable is incremented.
First I modified the example program sdfm_filter_sync_cla_cpu01 and it worked perfectly.
loopCounter1 is the variable incremented inside CLATASK 1
CLA1ISR is the variable incremented in the CLA 1 ISR function
timerZero is the variable incremented inside the TIMER0 ISR function
Then I created a new project and I copied all source and header files from the modified sdfm_filter_sync_cla_cpu01. Now I get this warning:
warning #10247-D: creating output section ".bss_cla" without a SECTIONS specification
I found out that it is because I have added the F2807x_Headers_nonBIOS.cmd file to my new project. In the example sdfm_filter_sync_cla_cpu01 program this cmd file is not included. Anyway when I ran it , it doesn't work as I expected.
Somehow the Cla Task 1 is executed just once because the loopCounter1 is incremented one time here and I have initialized it with zero.
I am attaching both the projects. Please help me resolve this issue.