High-Speed Digitizers

cancel
Showing results for 
Search instead for 
Did you mean: 

fetch multi measurement result

Hi ,
      I'm using the GPIB card to control the instrument. Nowadays I have encountered a problem wiht multi message fetch. The problem is like this : when I issue a querry for instance "Measure EEVM ?" to VISA write , the expected result from VISA read should be multi result like"11,22,33,12,55,~~~~". However ,my vi only can fetch the first data. I have referred some example from NI, it seem we can put these data into array. Is there any other method to get the data without using the array?
 
0 Kudos
Message 1 of 6
(7,173 Views)
I forgot to attach my code:)
Download All
0 Kudos
Message 2 of 6
(7,172 Views)
Hi ,
         The data fetch problem has been addressed by modify format express. New problem is instrument(E4406) initial problem,the driver seems too old. Could any one give me some ideas about this problem? Thanks.
0 Kudos
Message 3 of 6
(7,171 Views)

First of all, you are posting to the wrong board. You don't have an NI High Speed Digitizer. Post questions like this to the Instrument Control Board.

Second, that error is at the input to your posted VI. Something else has generated the error and whatever generated the error is an illegal command to the instrument.

Third, in your posted VI, you have a MEAS:EEVM command and then a MEAS:EEVM? query. You only need the query. The first doesn't do anything ro if it does, it's redundant.

 

0 Kudos
Message 4 of 6
(7,161 Views)

Hi Dennies,

                    Why I configure the measurement command:Measrue EEVM is because different number(Measure EEVM [n]) have different result. The default is 1. I think I need let the instrument known what kind of measurement result i want to fetch . So i put this command before querry.

Thanks.

Evan

0 Kudos
Message 5 of 6
(7,133 Views)

I looked at the manual and the syntax is:

:MEAS:<measurement> [n] ?

The ? is not optional according to this. According to the manual:

This is a fast single-command way to make a measurement using the factory default instrument settings.

 

0 Kudos
Message 6 of 6
(7,126 Views)