uv4.0似乎不支持512K以上flash的仿真?换成别的芯片就好了。但是还是有奇怪的问题,我怀疑此版本有问题。比如在以下程序中,xx使用局部变量时,赋值总是错误。
char buf[1024];
double sita,dsita;
int main()
{
double sintbl[18],costbl[18];
int i;
int len;
double xx;
len=0;
dsita=2;
dsita=2*3.14159/18.0;
xx=2*3.14159/18.0; //仿真是使用局部变量不行,为什么?
.. |