LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Serial com Port symbol

Arduino DAQ

 

What does the symbol by my serical com mean. For example Com port 10. The problem I have been getting is that even when my arduino is unplugged the com port stays active even when i check device manager and it shows gone. I have been getting a lot of error 5003.

 

Screenshot 2022-03-05 180646.png

0 Kudos
Message 1 of 6
(2,068 Views)

I think it means it was verified that it exists.

Bill
CLD
(Mid-Level minion.)
My support system ensures that I don't look totally incompetent.
Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.
Humble author of the CLAD Nugget.
0 Kudos
Message 2 of 6
(2,042 Views)

It basically means that LabVIEW has opened the resource either explicitedly by executing VISA Open, or implicitly by calling another VISA function with that VISA name. There is no reliable way to detect that a device has been removed so VISA does not try to do that.

You need to explicitly call VISA Close to let VISA know that the port is not used anymore and all resources can be released. Then that icon will also disappear.

Rolf Kalbermatter  My Blog
DEMO, Electronic and Mechanical Support department, room 36.LB00.390
Message 3 of 6
(2,019 Views)

Thanks I used a close VISA before my initiate and that seemed to help my error 5003 unable to communicate with arduino. 

0 Kudos
Message 4 of 6
(2,005 Views)

@Pohlr1 wrote:

Thanks I used a close VISA before my initiate and that seemed to help my error 5003 unable to communicate with arduino. 


So what you're really telling me is that you aren't closing the serial port (via VISA Close) after you are done using it.  😉

Bill
CLD
(Mid-Level minion.)
My support system ensures that I don't look totally incompetent.
Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.
Humble author of the CLAD Nugget.
0 Kudos
Message 5 of 6
(1,996 Views)

@Pohlr1 wrote:

Thanks I used a close VISA before my initiate and that seemed to help my error 5003 unable to communicate with arduino. 


The idea is normally to close the port after you are done with it not before you want to use it again!

Rolf Kalbermatter  My Blog
DEMO, Electronic and Mechanical Support department, room 36.LB00.390
0 Kudos
Message 6 of 6
(1,982 Views)