libsigrok/hardware/common/scpi_usbtmc.c

195 lines
4.7 KiB
C
Raw Normal View History

2013-12-03 22:25:33 +00:00
/*
* This file is part of the libsigrok project.
*
* Copyright (C) 2013 Martin Ling <martin-sigrok@earth.li>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "libsigrok.h"
#include "libsigrok-internal.h"
#include <glib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#define LOG_PREFIX "scpi_usbtmc"
2013-12-03 22:25:33 +00:00
#define MAX_READ_LENGTH 2048
struct usbtmc_scpi {
struct sr_usbtmc_dev_inst *usbtmc;
char response_buffer[MAX_READ_LENGTH];
int response_length;
int response_bytes_read;
};
2013-12-03 22:25:33 +00:00
SR_PRIV int scpi_usbtmc_open(void *priv)
{
struct usbtmc_scpi *uscpi = priv;
struct sr_usbtmc_dev_inst *usbtmc = uscpi->usbtmc;
2013-12-03 22:25:33 +00:00
if ((usbtmc->fd = open(usbtmc->device, O_RDWR)) < 0)
return SR_ERR;
return SR_OK;
}
SR_PRIV int scpi_usbtmc_source_add(void *priv, int events, int timeout,
sr_receive_data_callback_t cb, void *cb_data)
{
struct usbtmc_scpi *uscpi = priv;
struct sr_usbtmc_dev_inst *usbtmc = uscpi->usbtmc;
2013-12-03 22:25:33 +00:00
return sr_source_add(usbtmc->fd, events, timeout, cb, cb_data);
}
SR_PRIV int scpi_usbtmc_source_remove(void *priv)
{
struct usbtmc_scpi *uscpi = priv;
struct sr_usbtmc_dev_inst *usbtmc = uscpi->usbtmc;
2013-12-03 22:25:33 +00:00
return sr_source_remove(usbtmc->fd);
}
SR_PRIV int scpi_usbtmc_send(void *priv, const char *command)
{
struct usbtmc_scpi *uscpi = priv;
struct sr_usbtmc_dev_inst *usbtmc = uscpi->usbtmc;
2013-12-03 22:25:33 +00:00
int len, out;
len = strlen(command);
out = write(usbtmc->fd, command, len);
if (out < 0) {
sr_err("Write error: %s", strerror(errno));
return SR_ERR;
}
if (out < len) {
sr_dbg("Only sent %d/%d bytes of SCPI command: '%s'.", out,
len, command);
}
sr_spew("Successfully sent SCPI command: '%s'.", command);
return SR_OK;
}
SR_PRIV int scpi_usbtmc_read_begin(void *priv)
2013-12-03 22:25:33 +00:00
{
struct usbtmc_scpi *uscpi = priv;
struct sr_usbtmc_dev_inst *usbtmc = uscpi->usbtmc;
2013-12-03 22:25:33 +00:00
int len;
len = read(usbtmc->fd, uscpi->response_buffer, MAX_READ_LENGTH);
2013-12-03 22:25:33 +00:00
if (len < 0) {
sr_err("Read error: %s", strerror(errno));
return SR_ERR;
}
uscpi->response_length = len;
uscpi->response_bytes_read = 0;
2013-12-03 22:25:33 +00:00
return SR_OK;
}
SR_PRIV int scpi_usbtmc_read_data(void *priv, char *buf, int maxlen)
{
struct usbtmc_scpi *uscpi = priv;
int read_length;
if (uscpi->response_length == MAX_READ_LENGTH
&& uscpi->response_bytes_read == uscpi->response_length)
if (scpi_usbtmc_read_begin(uscpi) != SR_OK)
return SR_ERR;
if (uscpi->response_bytes_read >= uscpi->response_length)
return SR_ERR;
read_length = uscpi->response_length - uscpi->response_bytes_read;
if (read_length > maxlen)
read_length = maxlen;
memcpy(buf, uscpi->response_buffer + uscpi->response_bytes_read, read_length);
uscpi->response_bytes_read += read_length;
return read_length;
}
SR_PRIV int scpi_usbtmc_read_complete(void *priv)
{
struct usbtmc_scpi *uscpi = priv;
if (uscpi->response_length == MAX_READ_LENGTH
&& uscpi->response_bytes_read == uscpi->response_length)
scpi_usbtmc_read_begin(uscpi);
return (uscpi->response_bytes_read >= uscpi->response_length);
}
2013-12-03 22:25:33 +00:00
SR_PRIV int scpi_usbtmc_close(void *priv)
{
struct usbtmc_scpi *uscpi = priv;
struct sr_usbtmc_dev_inst *usbtmc = uscpi->usbtmc;
2013-12-03 22:25:33 +00:00
if (close(usbtmc->fd) < 0)
return SR_ERR;
return SR_OK;
}
2013-12-04 23:16:11 +00:00
static void scpi_usbtmc_free(void *priv)
{
struct usbtmc_scpi *uscpi = priv;
struct sr_usbtmc_dev_inst *usbtmc = uscpi->usbtmc;
g_free(uscpi);
sr_usbtmc_dev_inst_free(usbtmc);
2013-12-04 23:16:11 +00:00
}
2013-12-03 22:25:33 +00:00
SR_PRIV struct sr_scpi_dev_inst *scpi_usbtmc_dev_inst_new(const char *device)
{
struct sr_scpi_dev_inst *scpi;
struct usbtmc_scpi *uscpi;
2013-12-03 22:25:33 +00:00
struct sr_usbtmc_dev_inst *usbtmc;
if (!(usbtmc = sr_usbtmc_dev_inst_new(device)))
return NULL;
uscpi = g_malloc(sizeof(struct usbtmc_scpi));
uscpi->usbtmc = usbtmc;
scpi = g_malloc(sizeof(struct sr_scpi_dev_inst));
2013-12-03 22:25:33 +00:00
scpi->open = scpi_usbtmc_open;
scpi->source_add = scpi_usbtmc_source_add;
scpi->source_remove = scpi_usbtmc_source_remove;
scpi->send = scpi_usbtmc_send;
scpi->read_begin = scpi_usbtmc_read_begin;
scpi->read_data = scpi_usbtmc_read_data;
scpi->read_complete = scpi_usbtmc_read_complete;
2013-12-03 22:25:33 +00:00
scpi->close = scpi_usbtmc_close;
2013-12-04 23:16:11 +00:00
scpi->free = scpi_usbtmc_free;
scpi->priv = uscpi;
2013-12-03 22:25:33 +00:00
return scpi;
}