我在TI的6711开发板上编写了一个图像处理程序,我每次运行这个程序时按run之后,这个按钮就一直为灰色;按停止运行按钮;弹出错误提示框: trouble halting target cpu: error:0x80000020/-1070 fatal error during:execution, an unknown error.......... 我肯定问题就出现在这段图像处理程序中,因为我将这段程序注释掉以后程序就没有问题了。 程序框架如下:
#define Dist 724 #define Alpha 90
typedef struct{ int topx; int topy; int botx; int boty; }MYLINE; int lpDistAlpha[Dist*Alpha]; MYLINE lpMyLine[Dist*Alpha];
int main(void) { . . . . }
interrupt void func_int(void) { 进入中断处理程序后,我要对图像进行处理.但是一调用lpDistAlpha和lpMyLine这两个全局数组时,程序就会出现上述错误
}
这个问题困扰我很久了,大家知道的说一下 我在cmd文件中定义了heap:0x2000;stack:0x4000
|