Send — perform send addressing and write data
#include <gpib/ib.h>
void Send( | board_desc, | |
| address, | ||
| data, | ||
| count, | ||
eot_mode); |
int board_desc;Addr4882_t address;const void *data;long count;int eot_mode; Send() addresses the device specified by address
as listener, then writes data onto the bus.
It is equivalent to a
SendList()
except it only uses a single GPIB address to specify the listener
instead of allowing an array of listeners.