各位好,向大家请教一个串口通讯的问题
我现在在做dsp与arm的串口通讯,编程结束正在调试。调试的过程中发现一个问题
pSendBuf[0] = (char)0xbe;
WriteFile(m_hComm, pSendBuf, 1, &dwActLen, NULL); //(1)
Sleep(1000);
for(i=0;i<J;I++)
{
pSendBuf=datasci;
}
WriteFile(m_hComm, pSendBuf, j, &dwActLen, NULL); //(2)
ZeroMemory(datasci, sizeof(datasci) );
j=0;
在dsp端检测arm端发过来的数时,只能检测到(1)处发过来的数据,检测不了(2)处的数据。
但是之前用pc上的串口调试工具查看时,可以查看到(1)(2)处的数据。
请问这是为什么。。。 |