1 / 4
文档名称:

ccs3.3 错误总结.doc

格式:doc   大小:42KB   页数:4页
下载后只包含 1 个 DOC 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

分享

预览

ccs3.3 错误总结.doc

上传人:cjc201601 2018/1/14 文件大小:42 KB

下载得到文件列表

ccs3.3 错误总结.doc

文档介绍

文档介绍:1. 提示错误:Trouble Setting Breakpoint with the Action "Halt Target" at 0x3ec3bf: Error 0x0000000A/-2140 Error during: Memory, Break Point, Cannot access memory address at 0x00000800 Sequence ID: 7 Error Code: -2140 Error Class: 0x0000000A
设置硬件断点的方法:
debug---breakpoints 在弹出的对话框中在breakpoint 下拉框中选H/W break/////
但是必须要有硬件,我试过了,没有硬件的情况下是没有的,没有联上硬件的情况下是不能选择的
S,S不能初始化目标系统DSP的出错信息则可选择Debug→Reset DSP菜单项。若还不能解决上述问题,你可能需要运行你的目标板所提供的复位程序。
,,是什么原因?
,可以给F2808的板子下载程序,但是不能设置断点。 。请问是怎么回事?
答:,程序在FLASH中调试。不能设置断点。因为系统默认会设置两个断点。这样在程序段中就不能设置断点了。
。接着选中Program/Project/CIO,子菜单中勾选Do Not Set CIO Breakpoint AT……和Do Not Set End of Program Breakpoint AT……。点击确定即可。即可在flash中调试设置两个断点了。
2 error: system error, can't open file
'E:\DSP\DSP\sprc100\DSP281x_examples\kalman-zhangna01\Debug\' for input: No such file or directory。
原因:误点了 project中的build options 中的diagnostics 中的输出_err文件。,而这个文件又打不开,使得错误的文件不能调试,。
3. line 189: error: expected a ")"
内容为: MatrixInver(m0[4][1],MatrixInver_m00[1][4]4,1);
其实是少了个“,”
MatrixInver(m0[4][1],MatrixInver_m00[1][4],4,1);
4. identifier "n" is undefined;
identifier "m" is undefined
内容为:Matrix_DEL(float A[],float B[],float C[], n, m)
应改为:Matrix_DEL(float A[],float B[],float C[], int n, int m)
5 2010-9-15 调试串口程序,SCIFFTX及SCIFFRX总是显示有中断,那就说明是有数据到来的,