这就是我想要做的。我已经有了一些函数,例如这个函数可以将数据写入串口,完美运行:
bool WriteData(char *buffer, unsigned int nbChar)
{
DWORD bytesSend;
//Try to write the buffer on the Serial port
if(!WriteFile(hSerial, (void *)buffer, nbChar, &bytesSend, 0))
{
return false;
}
else
return true;
}
阅读功能如下:
int ReadData(char *buffer, unsigned int nbChar)
{
//Number of bytes we'll have read
DWORD bytesRead;
//Number of bytes we'll really ask to read
unsigned int toRead;
ClearCommError(hSerial, NULL, &status);
//Check if there is something to read
if(status.cbInQue>0)
{
//If there is we check if there is enough data to read the required number
//of characters, if not we'll read only the available characters to prevent
//locking of the application.
if(status.cbInQue>nbChar)
{
toRead = nbChar;
}
else
{
toRead = status.cbInQue;
}
//Try to read the require number of chars, and return the number of read bytes on success
if(ReadFile(hSerial, buffer, toRead, &bytesRead, NULL) && bytesRead != 0)
{
return bytesRead;
}
}
//If nothing has been read, or that an error was detected return -1
return -1;
}
无论我对arduino做什么,这个函数总是返回-1,我甚至尝试加载一个不断将字符写入串口的代码,但没有。
我从这里获得了这些功能:http://playground.arduino.cc/Interfacing/CPPWindows
所以我的功能基本相同。我只是将它们复制到我的代码中,而不是将它们用作类对象,但更多的是它们是相同的。
这就是我的问题,我可以将数据写入序列但我无法阅读,我可以尝试什么?
答案 0 :(得分:0)
对于任何有兴趣的人,我已经解决了它,这是一个愚蠢的错误。我对Arduino进行了编程,因此它会在发送任何内容之前等待串行输入。计算机程序一个接一个地写入并发送一行代码,我猜一个i7比Atmel快......显然数据需要一些时间。
添加睡眠(10);在从计算机中重新定位端口之前,最终可以读取数据。
感谢@Matts的帮助。