]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/colead-slm/protocol.c
colead-slm: Mark serial write call as blocking.
[libsigrok.git] / src / hardware / colead-slm / protocol.c
index ef58ab73c484ae8c02340060e946a9f1e9483df8..12a71546bb9f65de328255b8e489a2fed062dc33 100644 (file)
@@ -207,7 +207,7 @@ SR_PRIV int colead_slm_receive_data(int fd, int revents, void *cb_data)
                         * we don't want it. */
                        return TRUE;
                /* Got 0x10, "measurement ready". */
-               if (serial_write(serial, "\x20", 1) == -1)
+               if (serial_write_blocking(serial, "\x20", 1) == -1)
                        sr_err("unable to send command: %s", strerror(errno));
                else {
                        devc->state = COMMAND_SENT;