1. 现象
Windows上,串口存在但是打开串口号大于9的串口返回ERROR_FILE_NOT_FOUND,打开小于10的串口号却正常。
2. 解决
以10号串口为例:将错误示范COM10
改为 \\\\.\\COM10
, 再调用CreateFile就正确了。
该方法适用打开所有串口。
3. 一个例子:
注意CreateFile的第一个参数:
错误调用:
CreateFile(L"COM10",
GENERIC_READ | GENERIC_WRITE, // read/write types
0, // comm devices must be opened with exclusive access
NULL, // no security attributes
OPEN_EXISTING, // comm devices must use OPEN_EXISTING
flags_attributes, // Async I/O or sync I/O
NULL);
正确调用:
CreateFile(L"\\\\.\\COM10",
GENERIC_READ | GENERIC_WRITE, // read/write types
0, // comm devices must be opened with exclusive access
NULL, // no security attributes
OPEN_EXISTING, // comm devices must use OPEN_EXISTING
flags_attributes, // Async I/O or sync I/O
NULL);