标签:nbsp 使用 file 报错 bsp 解决方法 ror open gen
使用CreateFile打开串口(COM)号大于9时报错,GetLastError()的值为2。
解决方法:
// 把串口名称由 "COMN" 改为 "\\.\COMN",N没有大小限制
const int len = 20;
char newCommName[len + 1] = { 0 };
sprintf_s(newCommName, len, "\\\\.\\%s", chCommName);
m_hComm = CreateFileA( newCommName, // 串口号;
GENERIC_READ | GENERIC_WRITE,
0,
NULL,
OPEN_EXISTING,
0,
NULL );
标签:nbsp 使用 file 报错 bsp 解决方法 ror open gen
原文地址:https://www.cnblogs.com/qingtian224/p/9053951.html