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);
上一篇:Installation failed with message Failed to finalize session : INSTALL_FAILED_INVALID_APK:


下一篇:c – 在QLabel中显示sql查询的输出