window串口之CreateFile打开串口号大于9返回错误ERROR_FILE_NOT_FOUND
作者:互联网
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);
标签:GENERIC,串口,CreateFile,EXISTING,ERROR,FOUND,NULL,OPEN 来源: https://www.cnblogs.com/pandamohist/p/13681042.html