GPS串口搜索器
我尝试在平板电脑 (Windows CE) 上搜索 GPS 的串行端口。
我知道这是在“COM 3”上,但我希望程序自己找到它。我的意思是在所有端口上循环运行(for)并搜索它。
我的问题是我需要写哪个“如果”来告诉程序“这是我的 GPS 端口”。
谢谢大家。
I try to search my serial port of my GPS on my tablet (Windows CE).
I know that this is on "COM 3" but I want the program to find this by itself. I mean run in a loop (for) on all ports and search for this.
My question is which "if" I need to write to tell the program "this is my GPS port".
Thank you all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,GPS 使用物理或虚拟串行 com 端口(即通过 USB 的 com)。由于一次只有一个应用程序可以打开 com 端口,因此在搜索 GPS 端口时不应有任何程序使用 GPS。
您已经给出了答案“在所有端口上循环(for)并搜索”。
请注意,下面的示例是未经测试的示例,说明其工作原理。请随意更新此 wiki 页面以修复可能的错误并添加缺失的功能。
Gps as i know works with a physical or virtual serial com port (ie com via usb). Since only one application can open a com port at a time there should be no program using gps while searching for the gps-port.
You already gave the answer "loop (for) on all ports and serche for".
Note the example below is an untested scetch how it could work. Feel free to update this wiki page to fix possible errors and add missing functionality.