From Friday, April 19th (11:00 PM CDT) through Saturday, April 20th (2:00 PM CDT), 2024, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Windows eventually stops recognizing a Tek TDS2002B via USB

I wrote the software for a machine using a TEK TDS2002B via USB over 5 years ago and don't remember having a problem, but the machine is getting put back into production and they are having a problem with Windows eventually not recognizing the scope.  As far as I remember, I only installed NI-VISA (4.4.1) with LabVIEW 8.6.  My code, using the Tek dirivers I downloaded from NI, acquires the scope waveform via "Fetch Waveform.vi" code (once a connection has been established.  A reboot of the computer fixes the problem (dunno for how long), but I want to stop the need for the reboot.

 

Any ideas?

 

Thanks,

 

Todd

0 Kudos
Message 1 of 3
(2,193 Views)

Probably the window power management setting shutting down the USB HUBs

USB Plug-n-Play Devices (Windows)

In this topic we will discuss some of the common problems that have been observed using USB devices with LabVIEW on Windows operating systems.  Many of these points are also applicable to other environments but the examples will be use the Windows 7 OS.

 

FAQ 1 : My USB device stops working unexpectedly.

The first thing to look at is the OS power saving options.  There is a global trend towards developing "Green" electronics and energy star ratings are getting fairly common.  "If its not being used shut it off" is nothing new.  Cavemen learned how to bank a fire to preserve energy that would otherwise be wasted.  Likewise, the Windows OS has a power saving feature to shut down power to the USB hubs when no user activity is present.  In Automated systems this feature can cause problems since removing USB hub power will shut down the USB device.   Solution: Use the device manager to change the USB hub Power Options.

 

FAQ2: I set the power options and my device connection is still unreliable: Remember, those computer USB ports are often the cheapest that can be mounted on the chassis and share the PC system power supply to supply USB Power. Most uses of USB are temporary connections like a thumb drive or a camera.  These connections do not require high reliability since the user is right there interacting with it.  Power surges and fault tolerance at worst cause the operator to retry the data transfer.  Automated systems require a bit more robustness.  Solutions:

1) ALWAYS use an external self powered hub.  Perform your engineering due diligence and inspect the devices specifications too- If you can't find them for that device that should clue you to seek an product from a vendor that WILL publish their specs.

2) High noise environments require the use of ferrites on the USB cable- and don't buy the cheapest cable either! The cheap ones are poorly shielded.  

3) PROTECT the HUB connections-  If you have a USB2.0 device and Joe User plugs in a 1.0 device in a open slot managed by the same hub- Bingo every port on the hub may back convert to USB1.0.  WORSE there are a lot of damaged or marginally engineered USB devices out there.  Joe User's device may cause power fluctuations when it is inserted or removed from the hub just don't let it happen!

 

 

FAQ3: I am testing USB devices and the OS can't find them anymore.

This is a Plug-n-Play feature that deserves some exposure.  When you connect a P-n-P device the OS remembers its serial number in a HKEY (Hive-Key) registry entry.  This is helpful when (for example) you want a specific instrument, Say an NI-USB-6008, to show up as a DAQmx Device with VISA Alias "MyDAQ1" every time it is plugged it.  On the other hand, If you want to test a line of USB-Serial converters this can be problematic since the P-n-P driver will mount the first serial number as "COM3" and the next as "COM4" add infinitum until the enumerator controller in the registry and VISA recognized aliases get used up.  Solution: Use the Windows registry API and the Hardware Configuration API in LabVIEW to clear unused VISA Aliases and HKEY entries.   Speak with your staff IT professional about HKEY structure and possible side effects before developing a plan to edit registry entries.


"Should be" isn't "Is" -Jay
Message 2 of 3
(2,177 Views)

Hi Jeff,

 

Thanks for the suggestions...I will pass them onto the facility using the tester.

 

I forgot this bit of info

 

1) when this happens, Windows shows there is a problem with the device in Device Manager

2) I'm going by menory here but I think once this happens, powering-off the scope then back on still didn't fix the problem...Windows XP still said there was a problem with the device.  Rebooting worked.

 

I'm leaning towards a VISA problem...not sure if I have to use TEK VISA or if NI-VISA is OK.

 

Thanks,

 

Todd

0 Kudos
Message 3 of 3
(2,163 Views)