I want to find the COM port my device got connected in my vc++ program. upto now i used to scan all the ports from 0 to 15 and send some command if the reply is suitable to me i can confirm that it is the port i am finding.

But this is Taking a lot of time.

anyother solution???

有帮助吗?

解决方案

The serial API does not provide for any of the sort of identification that you seem to desire so the only choice that you have is to poll he various ports. If the device is a USB device, you may be able to garnish clues from the friendly name associated with that device (see How do I get the friendly name of a COM port in Windows?).

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top