Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
lundmar committed Mar 30, 2016
1 parent f58d8a2 commit a083da6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,18 @@
$ make
$ make install

4. The liblxi API

The API is small and simple. It basically includes features required for
discovering and communicating SCPI messages to LXI devices.

int lxi_init(void);
int lxi_discover_devices(lxi_devices_t **devices, int timeout, int verbose);
int lxi_get_device_info(lxi_devices_t *devices, lxi_device_t *device);
int lxi_connect(char *address);
int lxi_send(int device, char *message, int length, int timeout);
int lxi_receive(int device, char *message, int *length, int timeout);
int lxi_disconnect(int device);

4. API usage

Expand Down

0 comments on commit a083da6

Please sign in to comment.