]> sigrok.org Git - libsigrok.git/commitdiff
mic-985xx: Mark serial read as nonblocking.
authorMartin Ling <redacted>
Sun, 21 Sep 2014 17:52:20 +0000 (18:52 +0100)
committerUwe Hermann <redacted>
Wed, 24 Sep 2014 21:30:31 +0000 (23:30 +0200)
This call was already nonblocking since the driver opens the port with the
SERIAL_NONBLOCK flag. Partial reads are handled.

src/hardware/mic-985xx/protocol.c

index ce5f0209649e3afc00a4f4f5c6b3accf508ff7a5..3a133ca7f115551fd50cedfc73f3bbfbdea404c7 100644 (file)
@@ -154,7 +154,7 @@ static void handle_new_data(struct sr_dev_inst *sdi, int idx)
 
        /* Try to get as much data as the buffer can hold. */
        len = SERIAL_BUFSIZE - devc->buflen;
-       len = serial_read(serial, devc->buf + devc->buflen, len);
+       len = serial_read_nonblocking(serial, devc->buf + devc->buflen, len);
        if (len < 1) {
                sr_err("Serial port read error: %d.", len);
                return;