X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fhardware%2Fconrad-digi-35-cpu%2Fprotocol.c;h=78f7d1c34c0f7136db9396f374b590fd45c440de;hb=deb7615262ac4f9cc0750a08351afa7cbf9c34d5;hp=32702d8398fac5f0d40588fbbd716b2586858067;hpb=6ec6c43b4738dbc7091f4a49a4ec80ea6102cb52;p=libsigrok.git diff --git a/src/hardware/conrad-digi-35-cpu/protocol.c b/src/hardware/conrad-digi-35-cpu/protocol.c index 32702d83..78f7d1c3 100644 --- a/src/hardware/conrad-digi-35-cpu/protocol.c +++ b/src/hardware/conrad-digi-35-cpu/protocol.c @@ -17,12 +17,6 @@ * along with this program. If not, see . */ -/** - * @file - * Conrad DIGI 35 CPU power supply driver - * @internal - */ - #include #include "protocol.h" @@ -49,7 +43,8 @@ SR_PRIV int send_msg1(const struct sr_dev_inst *sdi, char cmd, int param) sr_spew("send_msg1(): %c%c%c%c\\r", buf[0], buf[1], buf[2], buf[3]); - if (serial_write_blocking(serial, buf, sizeof(buf), 0) < (int)sizeof(buf)) { + if (serial_write_blocking(serial, buf, sizeof(buf), + serial_timeout(serial, sizeof(buf))) < (int)sizeof(buf)) { sr_err("Write error for cmd=%c", cmd); return SR_ERR; }