07-06-2022 05:19 PM
I have certain GPIB connected instruments that are not showing up in Asset Manager. I can communicate to them without issue from client SW. Also they show up in NI MAX and respond queries there. What is the best way to debug why I'm not seeing these in Asset Manager?
Some of the makes of these instruments that don't show up are Chroma, Krohn-Hite.
~ Bertram
Solved! Go to Solution.
07-06-2022 07:25 PM
Do those respond to the typical "IDN?" query?
07-06-2022 07:33 PM
@santo_13 wrote:
Do those respond to the typical "IDN?" query?
Good question. Yes.
07-07-2022 08:02 AM
First, make sure you have NI VISA and NI-488.2 installed. Then, manually run Scan for Instruments in MAX locally on the client. Finally, the *IDN? has to return a serial number for the instrument in a way that NI-VISA can parse. If the serial number doesn't show up in MAX then it won't be tracked as an asset in SystemLink because we have no way to uniquely identify the instrument at that point.
07-07-2022 10:55 AM
If that doesn't work here is an example on how you can manually add additional assets on the client-side by populating some JSON files in a specific directory. You can use this mechanism if you have some other process for querying the instruments.
https://github.com/joshuaprewitt/systemlink-asset-management-api
07-07-2022 02:09 PM
I appreciate the feedback.