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.

TMS320F28035: 在CCS的代码中循环产生一个0~0.5或0~1之间的随机数

Part Number: TMS320F28035


在网找到的例子

#include<stdio.h>
#include<stdlib.h>
#include<time.h>

void main(void)

{

..........................

srand((unsigned)time(NULL));
fRandValue = rand();

}

仿真后,点运行报错

Break at address "0x3ff599" with no debug information available, or outside of program code.

这是什么原因,有什么办法处理?