03-27-2013 10:00 PM
Hi,
When I connect board to computer, I use
ResourceManager.GetLocalManager().FindResources("?*")
to get resource name("ASRL11::INSTR") and use this name I invoke
Session session = ResourceManager.GetLocalManager().Open(name);
to get session and get session's HardwareInterfaceName property value.
The problem is that the COM port number in the HardwareInterfaceName property("Com10") does not match the resource name. The COM port number is correct, it is the same as it is shown in Windows Device Manager. But why is the resource name "ASRL11::INSTR", it should be "ASRL10::INSTR".
Does anyone have an idea?
Thanks,
Eva
Solved! Go to Solution.
03-28-2013 04:58 AM
Hi,
Port 10 is reserved for the parallel port
Curt
03-31-2013 08:21 PM
So the resource name is not neccessary to match com port name.
Thank you very much!
Eva