]> sigrok.org Git - libsigrok.git/commitdiff
radioshack-dmm: use new serial API
authorBert Vermeulen <redacted>
Mon, 12 Nov 2012 11:41:10 +0000 (12:41 +0100)
committerBert Vermeulen <redacted>
Mon, 12 Nov 2012 11:41:10 +0000 (12:41 +0100)
hardware/radioshack-dmm/api.c
hardware/radioshack-dmm/protocol.c
hardware/radioshack-dmm/protocol.h

index 7a6f033901113346372923f5098b784e0ea8b723..c32ffbe6e1d62ed55440045e4060fc543800ebe4 100644 (file)
@@ -28,6 +28,8 @@
 #include "libsigrok-internal.h"
 #include "protocol.h"
 
+#define SERIALCOMM "4800/8n1"
+
 static const int hwopts[] = {
        SR_HWOPT_CONN,
        SR_HWOPT_SERIALCOMM,
@@ -95,21 +97,18 @@ static GSList *rs_22_812_scan(const char *conn, const char *serialcomm)
        struct drv_context *drvc;
        struct dev_context *devc;
        struct sr_probe *probe;
+       struct sr_serial_dev_inst *serial;
        GSList *devices;
-       int fd, retry;
+       int retry;
        size_t len, i, good_packets, dropped;
        char buf[128], *b;
        const struct rs_22_812_packet *rs_packet;
 
-       if ((fd = serial_open(conn, O_RDONLY | O_NONBLOCK)) < 0) {
-               sr_err("Unable to open '%s': %d.", conn, fd);
+       if (!(serial = sr_serial_dev_inst_new(conn, serialcomm)))
                return NULL;
-       }
 
-       if (serial_set_paramstr(fd, serialcomm) != SR_OK) {
-               sr_err("Unable to set serial parameters.");
+       if (serial_open(serial, O_RDONLY|O_NONBLOCK) != SR_OK)
                return NULL;
-       }
 
        sr_info("Probing port '%s' readonly.", conn);
 
@@ -126,11 +125,11 @@ static GSList *rs_22_812_scan(const char *conn, const char *serialcomm)
        while (!devices && retry < 3) {
                good_packets = 0;
                retry++;
-               serial_flush(fd);
+               serial_flush(serial);
 
                /* Let's get a bit of data and see if we can find a packet. */
                len = sizeof(buf);
-               serial_readline(fd, &b, &len, 250);
+               serial_readline(serial, &b, &len, 250);
                if ((len == 0) || (len < RS_22_812_PACKET_SIZE)) {
                        /* Not enough data received, is the DMM connected? */
                        continue;
@@ -167,8 +166,7 @@ static GSList *rs_22_812_scan(const char *conn, const char *serialcomm)
                        return NULL;
                }
 
-               devc->serial = sr_serial_dev_inst_new(conn, -1);
-               devc->serialcomm = g_strdup(serialcomm);
+               devc->serial = serial;
 
                sdi->priv = devc;
                sdi->driver = di;
@@ -179,7 +177,7 @@ static GSList *rs_22_812_scan(const char *conn, const char *serialcomm)
                devices = g_slist_append(devices, sdi);
                break;
        }
-       serial_close(fd);
+       serial_close(serial);
 
        return devices;
 }
@@ -205,13 +203,12 @@ static GSList *hw_scan(GSList * options)
        if (!conn)
                return NULL;
 
-       if (serialcomm) {
+       if (serialcomm)
                /* Use the provided comm specs. */
                devices = rs_22_812_scan(conn, serialcomm);
-       } else {
-               /* Try the default 4800/8n1. */
-               devices = rs_22_812_scan(conn, "4800/8n1");
-       }
+       else
+               /* Try the default. */
+               devices = rs_22_812_scan(conn, SERIALCOMM);
 
        return devices;
 }
@@ -234,15 +231,9 @@ static int hw_dev_open(struct sr_dev_inst *sdi)
                return SR_ERR_BUG;
        }
 
-       devc->serial->fd = serial_open(devc->serial->port, O_RDONLY);
-       if (devc->serial->fd < 0) {
-               sr_err("Couldn't open serial port '%s'.", devc->serial->port);
+       if (serial_open(devc->serial, O_RDONLY) != 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;
@@ -258,8 +249,7 @@ static int hw_dev_close(struct sr_dev_inst *sdi)
        }
 
        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;
        }
 
index 96342cecb508ed96a7d0dcb0b593e9e8e6fabaf7..de925b56838ebd376bbecb723fb710cee2b8172b 100644 (file)
@@ -419,7 +419,7 @@ static void handle_packet(struct rs_22_812_packet *rs_packet,
        g_free(analog);
 }
 
-static void handle_new_data(struct dev_context *devc, int fd)
+static void handle_new_data(struct dev_context *devc)
 {
        int len;
        size_t i, offset = 0;
@@ -427,7 +427,7 @@ static void handle_new_data(struct dev_context *devc, int fd)
 
        /* Try to get as much data as the buffer can hold. */
        len = RS_DMM_BUFSIZE - devc->buflen;
-       len = serial_read(fd, devc->buf + devc->buflen, len);
+       len = serial_read(devc->serial, devc->buf + devc->buflen, len);
        if (len < 1) {
                sr_err("Serial port read error.");
                return;
@@ -456,6 +456,8 @@ SR_PRIV int radioshack_dmm_receive_data(int fd, int revents, void *cb_data)
        struct sr_dev_inst *sdi;
        struct dev_context *devc;
 
+       (void)fd;
+
        if (!(sdi = cb_data))
                return TRUE;
 
@@ -464,7 +466,7 @@ SR_PRIV int radioshack_dmm_receive_data(int fd, int revents, void *cb_data)
 
        if (revents == G_IO_IN) {
                /* Serial data arrived. */
-               handle_new_data(devc, fd);
+               handle_new_data(devc);
        }
 
        if (devc->num_samples >= devc->limit_samples) {
index 833cc4585c8328cab43ceadd80b19bf35c7e3eeb..e1c4144285071695d8dbca511cf872a4c09d7bcc 100644 (file)
@@ -50,7 +50,6 @@ struct rs_22_812_packet {
 struct dev_context {
        uint64_t limit_samples;
        struct sr_serial_dev_inst *serial;
-       char *serialcomm;
 
        /* Opaque pointer passed in by the frontend. */
        void *cb_data;