colead-slm: Mark serial write call as blocking.
This driver opens the port without the SERIAL_NONBLOCK flag, so this call was already blocking.
This commit is contained in:
parent
bbff0fe0d2
commit
02bd1d0298
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue