SendList — write data to multiple devices
#include <gpib/ib.h>
void SendList( | board_desc, | |
| addressList[], | ||
| data, | ||
| count, | ||
eot_mode); |
int board_desc;const Addr4882_t addressList[];const void *data;long count;int eot_mode; SendList() addresses the devices in addressList
as listeners, then writes the contents of the array data
to them.
It is equivalent to a
SendSetup()
call followed by a
SendDataBytes()
call.