10-23-2019 09:25 AM
Hello all. I am making a VI for operating the PXI-4110. I want to use a VI instead of the SFP so I can put some documentation onscreen for users. Ok, so I have much of the VI made. I am using a State Machine for this program, which may not be the best solution. My major problem is that I can not access all three channels simultaneously. If I change channels while the program runs, I get error 1074135008 "Unknown channel or capability name." If I set a channel at the start of the program, that channel will run.
I know there was a property that affected whether all three channels run together or can be accessed individually. The default runs all three. I would have used that, except then I couldn't control turning a channel on or off.
Solved! Go to Solution.
11-16-2019 10:14 PM - edited 11-16-2019 10:15 PM
Hello,
I extensively use NI DC power parallelism for my production test.
In the provided screenshot, you are opening a single session for all 3 channels and try to access all channels in parallel. NI DC power instruments are capable of having per channel sessions.
Solution is to create separate sessions for each of the channel, then you would be able to control them in parallel without errors.
So, you would have 3 sessions, where each session is dedicated to each channel. Changes to appropriate sessions will allow you to control only that channel, this way you can do all instrument configurations on per-channel basis.
11-18-2019 07:32 AM
Thank you! That is exactly what I needed.