‎03-16-2007 11:21 AM
‎03-16-2007 11:30 AM
The search parameter *? is illegal and you should be getting an error with that. Use ?* instead.
And no, your USB mouse, keyboard, etc. will not be listed. No USB device will be listed unless there are VISA drivers for them, like a USBTMC instrument.
‎03-16-2007 11:41 AM
‎03-16-2007 12:04 PM
I keep hoping that someone with Mac experience will see your posts as I only ever worked with Windows.
Let me start with some of the basics of USB devices. Under windows, there are several inf files that come with the OS and they allow for automatic detection of certain types of USB devices. For example, there is HID type inf file that Human Interface Device types such as keyboards and mice will use. Other device will install their own inf file so that windows will recognize it. Under windows, to communicate to a USB device with LabVIEW, you would use whatever low level driver is provided by the vendor. This would normally be done with the Call Library Function Node to interface to the vendor's dll that they provide. In one of your other posts, you reference a tutorial on using VISA with a USB device. You use the VISA Driver Development Wizard to create an .inf file. In windows, an inf file is how the USB device is identified to the OS and the file created by the wizard tells windows that VISA is the interface to the device. You would then use the VISA RAW functions to send/receive data. However, the inf file is only supported under windows as far as I can tell but I could be wrong.
Have you tried to contact the vendor of your device to see if they have anything for the Mac?
‎03-16-2007 12:09 PM