串口通信问题(C代码)
我最近尝试使用蓝牙 USB 适配器访问串行通信。 我使用下面的 C 代码,并不断收到错误 5,即“访问被拒绝”。 我是系统的管理员(这似乎是论坛上此问题的常见解决方案),并且没有其他应用程序访问我正在使用的同一端口(也是另一个常见的解决方案)。 我正在 Windows Vista Home Basic 32 位系统上运行。 我想知道是否有人有解决方案 我的C代码是:
HANDLE hComm;
hComm = CreateFile( _T("\\.\COM3"), GENERIC_READ | GENERIC_WRITE, 0, 无效的, OPEN_现有, 0, 无效的);
if (hComm == INVALID_HANDLE_VALUE)
printf("Error number: %ld\n", GetLastError());
else
printf("success\n");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我不知道这是否是您的问题,但我怀疑您需要转义路径中的反斜杠,如下所示:
"\\\\.\\COM3"
I don't know if this is your problem or not, but I suspect you need to escape the backslashes in the path, like so:
"\\\\.\\COM3"
这看起来确实需要再次转义反斜杠。 您还可以使用对象查看器(例如 WinObj (http://technet.microsoft.com/en-us/sysinternals/bb896657.aspx),虽然我不知道WinObj是否可以在Vista上运行。
That does look like you have to escape your backslashes again. You can also verify that the COM port you're targeting exists on your system by using an object viewer, such as WinObj (http://technet.microsoft.com/en-us/sysinternals/bb896657.aspx), although I don't know if WinObj runs on Vista.
根据我的经验,不需要反斜杠
In my experience the backslashes are not needed
感谢您的提示,但事实证明蓝牙密钥设置不正确,因此拒绝访问串行端口。
Thanks for the tips but it turns out the bluetooth passkey was not set properly and therefore it was denying access to the serial port.
只需在代码中将 COM# 替换为 \.\COM# 即可,
Just replace your COM# with \.\COM# in your code,