如何用c程序进行串口通信?
使用vc++编译器如何访问串口。 Bioscom()函数可以在Turbo C中使用。
Using vc++ compiler how one can access serial port. Bioscom() function can be used in Turbo C.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您必须像这样使用
CreateFile
打开适当的 com 设备。 适应您的需求。阅读相应的 MSDN 条目以了解所调用的各种函数。 另外,为了简洁起见,我省略了断开连接方法。
you have to open the appropriate com-device with
CreateFile
like so. Adapt to your needs.Read the appropriate MSDN entries for the various functions called. Also, I've left out the disconnect method for brevity reasons.
代码项目中有很多关于与 C++ 进行串行通信的文章。 这是返回的第一篇文章。 您基本上通过文件 I/O 操作来访问端口。 这有点复杂,我建议为这项任务找到合适的库。
They are many articles in Code Project regarding serial communication with C++. This is the first article returned. You basically access the port with file I/O operations. It is a bit complicated and I recommend finding an appropriate library for this task.
Microsoft Developer Network 上的此页面介绍了如何使用串行端口在 Windows 中,根据您选择的编译器,我认为这是您想要的目标环境。
This page on the Microsoft Developer Network introduces how to work with serial ports in Windows, which I assume is the environment you want to target, based on your choice of compiler.
BIOS 功能仅在您使用 MSDOS 或非常旧版本的 Windows(并且特定于 Turbo C)时才可用。 对于现代版本的 Windows,您将需要使用操作系统 API 来执行串行 I/O。
The bios functions are only available if you are using MSDOS or very old versions of Windows (and are specific to Turbo C). For modern versions of Windows, you will need to use the OS APIs to perform serial I/O.