void SCI1_write(int *point, int num)
{
int *p=point;
int i=0;
//p=point;
SCI1C2_TE=1;
while(i<num)
{
while(!SCI1S1_TDRE); /* ensure Tx data buffer empty */
SCI1D =*p++; /* load data to data register */
i++;
while(!SCI1S1_TC); /* wait for Tx complete */
}
}
为什么我在使用codewarrior进行编译的时候. 这句SCI1D =*p++; /提示 possible loss of data? 它影响程序的运行吗? 谢谢
[此贴子已经被作者于2006-8-12 10:52:59编辑过]
欢迎光临 电子技术论坛_中国专业的电子工程师学习交流社区-中电网技术论坛 (http://bbs.eccn.com/) | Powered by Discuz! 7.0.0 |