X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fscpi%2Fscpi_libgpib.c;h=5c82bd6f3dee6edd2e27a25292d16667d10fad27;hb=6188675b72990ee3f76b465e6020b38792604130;hp=ed499cca5bad7bacd0e1e1fa07b70fc4ab7041a9;hpb=daf13c570f3532a702401363a35195970600c046;p=libsigrok.git diff --git a/src/scpi/scpi_libgpib.c b/src/scpi/scpi_libgpib.c index ed499cca..5c82bd6f 100644 --- a/src/scpi/scpi_libgpib.c +++ b/src/scpi/scpi_libgpib.c @@ -59,6 +59,16 @@ static int scpi_gpib_open(struct sr_scpi_dev_inst *scpi) return SR_OK; } +static int scpi_gpib_connection_id(struct sr_scpi_dev_inst *scpi, + char **connection_id) +{ + struct scpi_gpib *gscpi = scpi->priv; + + *connection_id = g_strdup_printf("%s/%s", scpi->prefix, gscpi->name); + + return SR_OK; +} + static int scpi_gpib_source_add(struct sr_session *session, void *priv, int events, int timeout, sr_receive_data_callback cb, void *cb_data) { @@ -118,8 +128,9 @@ static int scpi_gpib_read_data(void *priv, char *buf, int maxlen) if (ibsta & ERR) { - sr_err("Error while reading SCPI response: iberr = %s.", - gpib_error_string(iberr)); + sr_err("Error while reading SCPI response: " + "iberr = %s, ibsta = %d.", + gpib_error_string(iberr), ibsta); return SR_ERR; } @@ -139,6 +150,9 @@ static int scpi_gpib_close(struct sr_scpi_dev_inst *scpi) { struct scpi_gpib *gscpi = scpi->priv; + /* Put device in back local mode to prevent lock-out of front panel. */ + ibloc(gscpi->descriptor); + /* Now it's safe to close the handle. */ ibonl(gscpi->descriptor, 0); return SR_OK; @@ -151,18 +165,39 @@ static void scpi_gpib_free(void *priv) g_free(gscpi->name); } +SR_PRIV int sr_scpi_gpib_spoll(struct sr_scpi_dev_inst *scpi, char *buf) +{ + struct scpi_gpib *gscpi = scpi->priv; + + g_mutex_lock(&scpi->scpi_mutex); + ibrsp(gscpi->descriptor, buf); + + if (ibsta & ERR) { + sr_err("Error while serial polling: iberr = %s.", + gpib_error_string(iberr)); + g_mutex_unlock(&scpi->scpi_mutex); + return SR_ERR; + } + g_mutex_unlock(&scpi->scpi_mutex); + sr_spew("Successful serial poll: 0x%x", (uint8_t)buf[0]); + + return SR_OK; +} + SR_PRIV const struct sr_scpi_dev_inst scpi_libgpib_dev = { - .name = "GPIB", - .prefix = "libgpib", - .priv_size = sizeof(struct scpi_gpib), - .dev_inst_new = scpi_gpib_dev_inst_new, - .open = scpi_gpib_open, - .source_add = scpi_gpib_source_add, + .name = "GPIB", + .prefix = "libgpib", + .transport = SCPI_TRANSPORT_LIBGPIB, + .priv_size = sizeof(struct scpi_gpib), + .dev_inst_new = scpi_gpib_dev_inst_new, + .open = scpi_gpib_open, + .connection_id = scpi_gpib_connection_id, + .source_add = scpi_gpib_source_add, .source_remove = scpi_gpib_source_remove, - .send = scpi_gpib_send, - .read_begin = scpi_gpib_read_begin, - .read_data = scpi_gpib_read_data, + .send = scpi_gpib_send, + .read_begin = scpi_gpib_read_begin, + .read_data = scpi_gpib_read_data, .read_complete = scpi_gpib_read_complete, - .close = scpi_gpib_close, - .free = scpi_gpib_free, + .close = scpi_gpib_close, + .free = scpi_gpib_free, };