使用CCS 4.2版本,编译器是6.1.5,下载运行CLA的时候分别提示下列错误CLA_0: Trouble Removing Breakpoint with the Action "Finish Auto Run" at 0x3f3374: Error 0x00000008/-2044 Error during: Break Point, No breakpoint at 0x003F3374
CLA_0: Can't Run Target CPU: No task is currently active. Cannot run while target is idle.
CLA任务能够进入,得到的结果是0.0,
求大神看看是什么原因啊,谢谢。
/
Hank Zhao:
你好,CLA任务运行结束后就会终止不能再次运行。
使用CCS 4.2版本,编译器是6.1.5,下载运行CLA的时候分别提示下列错误CLA_0: Trouble Removing Breakpoint with the Action "Finish Auto Run" at 0x3f3374: Error 0x00000008/-2044 Error during: Break Point, No breakpoint at 0x003F3374
CLA_0: Can't Run Target CPU: No task is currently active. Cannot run while target is idle.
CLA任务能够进入,得到的结果是0.0,
求大神看看是什么原因啊,谢谢。
/
liu liu5:
回复 Hank Zhao:
你好,该如何设置下,才能判断CLA运行了,并且cla运行结果是对的那?我现在的运行结果都不对,不知道是监控的错误,还是没运行。
监控的数据是fVal和fResult。
我现在使用的是cla方式,cla代码如下::
#include "DSP28x_Project.h" // Include the test header file whose name is based on the test name // which is defined by the macro TEST on the command line #include XSTRINGIZE(XCONCAT(CLA,shared.h))
//Task 1 :y = sqrt(x) __interrupt void Cla1Task1 ( void )
{ fVal=AdcResult.ADCRESULT0;
fResult = __sqrt(fVal);
}
谢谢
使用CCS 4.2版本,编译器是6.1.5,下载运行CLA的时候分别提示下列错误CLA_0: Trouble Removing Breakpoint with the Action "Finish Auto Run" at 0x3f3374: Error 0x00000008/-2044 Error during: Break Point, No breakpoint at 0x003F3374
CLA_0: Can't Run Target CPU: No task is currently active. Cannot run while target is idle.
CLA任务能够进入,得到的结果是0.0,
求大神看看是什么原因啊,谢谢。
/
Hank Zhao:
回复 liu liu5:
你好,你可以在主程序中设置一个变量并赋初值,并且在CLA task1的task complete中断程序中修改这个变量,从而验证CLA task是否执行过。