#include <errno.h>
#include <string.h>
+/* The Colead SL-5868P uses this. */
+#define SERIALCOMM "2400/8n1"
+
static const int hwopts[] = {
SR_HWOPT_CONN,
SR_HWOPT_SERIALCOMM,
}
if (!conn)
return NULL;
+ if (!serialcomm)
+ serialcomm = SERIALCOMM;
if (!(sdi = sr_dev_inst_new(0, SR_ST_INACTIVE, "Colead",
"SL-5868P", NULL)))
return NULL;
}
- if (!serialcomm)
- /* The Colead SL-5868P uses this. */
- serialcomm = "2400/8n1";
+ if (!(devc->serial = sr_serial_dev_inst_new(conn, serialcomm)))
+ return NULL;
- devc->serial = sr_serial_dev_inst_new(conn, -1);
- devc->serialcomm = g_strdup(serialcomm);
sdi->priv = devc;
sdi->driver = di;
if (!(probe = sr_probe_new(0, SR_PROBE_ANALOG, TRUE, "P1")))
return SR_ERR_BUG;
}
- sr_dbg("opening %s with %s", devc->serial->port, devc->serialcomm);
- devc->serial->fd = serial_open(devc->serial->port, O_RDWR | O_NONBLOCK);
- if (devc->serial->fd == -1) {
- sr_err("Couldn't open serial port '%s'.",
- devc->serial->port);
+ if (serial_open(devc->serial, O_RDWR) != SR_OK)
return SR_ERR;
- }
- if (serial_set_paramstr(devc->serial->fd, devc->serialcomm) != SR_OK) {
- sr_err("Unable to set serial parameters.");
- return SR_ERR;
- }
+
sdi->status = SR_ST_ACTIVE;
return SR_OK;
}
if (devc->serial && devc->serial->fd != -1) {
- serial_close(devc->serial->fd);
- devc->serial->fd = -1;
+ serial_close(devc->serial);
sdi->status = SR_ST_INACTIVE;
}
int len;
char buf[128];
+ (void)fd;
+
if (!(sdi = cb_data))
return TRUE;
return TRUE;
if (devc->state == IDLE) {
- if (serial_read(fd, buf, 128) != 1 || buf[0] != 0x10)
+ if (serial_read(devc->serial, buf, 128) != 1 || buf[0] != 0x10)
/* Nothing there, or caught the tail end of a previous packet,
* or some garbage. Unless it's a single "data ready" byte,
* we don't want it. */
return TRUE;
/* Got 0x10, "measurement ready". */
- if (serial_write(fd, "\x20", 1) == -1)
+ if (serial_write(devc->serial, "\x20", 1) == -1)
sr_err("unable to send command: %s", strerror(errno));
else {
devc->state = COMMAND_SENT;
devc->buflen = 0;
}
} else {
- len = serial_read(fd, devc->buf + devc->buflen, 10 - devc->buflen);
+ len = serial_read(devc->serial, devc->buf + devc->buflen,
+ 10 - devc->buflen);
if (len < 1)
return TRUE;
devc->buflen += len;