Hello,
I would like to control GPIB instruments via Ethernet using my own software
fom a Linux box. Not planning to use MAX and/or any other NI software/drivers.
I need to be able to talk to the GPIB-ENET/1000 via C commands like:
socket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
connect(socket, ...);
send(socket, "something", ...);
recv(socket, where_to, ...);
Is this something that can be done?
Is there a reference document summarizing GPIB-ENET/1000 commands
that I must use to communicate with GPIB instruments?
Thanks!