hello,
i just subscribed to this forum and this is my first post. dont know for sure how this thing works.
my problem is that i want to send a command to measure the readings of
2 instruments at the same time. and then i want to get back the
corresponding values of that specific time.
im programming using C and here is a piece of my code that is relevant. :
int status, len;
char i[80];
char v[80];
initialize (21,0);
send(11, "read?",
&status);
//11 and 12 are the gpib address of my voltmeter and ammeter
send(22, "read",
&status);
enter(v, 20, &len, 11,
&status);
enter(i, 20, &len, 22, &status);
will this command return me the values of both the voltmeter and ammeter of the same point of time.
if someone can help me and if my question is unclear.....please reply. i will get back in detials.
Thanks,
Adnan