02-13-2006 02:37 PM
Solved! Go to Solution.
02-13-2006 08:45 PM
The device-level call for NI-488.2M API ibconfig() function does this.
ibconfig( ud, ibcREADDR, 1);
The ibcREADDR is a constant value (=0x0006). Setting this attribute to non-zero (such as 1) enables Repeat Addressing for the device represented by "ud".
In VB6, the syntax will be:
CALL ibconfig( ud, 6, 1)
02-14-2006 07:19 AM
A normal flow of communication on the GPIB is to send some command bytes (with the ATN line asserted) to place the devices on the bus in the correct addressing state (1 device is addressed as a talker and 1 or more devices are addressed as a listener). Afterwards, the ATN line is unasserted and the talker will place data bytes on the bus for the listeners to listen to.
@nyc_(is_out_of_here) wrote:
Can some explain to me what it is and most importantly how I need to deal with it?
02-14-2006 08:25 AM
Thank you both!
When I was working at Motorola I took a GPIB class from an ex-HP support engineer. That explanation of "what it is" is now triggering - no pun intended - some vague memories of what he told us. 🙂