]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/tondaj-sl-814/protocol.c
Build: Include <config.h> first in all source files
[libsigrok.git] / src / hardware / tondaj-sl-814 / protocol.c
index b4deee1364f5b6fafdec8eeef16ee1a3de687927..a3696b69e79eb1b5e394f6e4dc35d708b8e693b4 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
+#include <config.h>
 #include <string.h>
 #include <glib.h>
-#include "libsigrok.h"
+#include <libsigrok/libsigrok.h>
 #include "libsigrok-internal.h"
 #include "protocol.h"
 
@@ -108,7 +109,7 @@ static void decode_packet(struct sr_dev_inst *sdi)
        devc->num_samples++;
 }
 
-int tondaj_sl_814_receive_data(int fd, int revents, void *cb_data)
+SR_PRIV int tondaj_sl_814_receive_data(int fd, int revents, void *cb_data)
 {
        struct sr_dev_inst *sdi;
        struct dev_context *devc;
@@ -133,14 +134,14 @@ int tondaj_sl_814_receive_data(int fd, int revents, void *cb_data)
                buf[2] = 0x0d;
                sr_spew("Sending init command: %02x %02x %02x.",
                        buf[0], buf[1], buf[2]);
-               if ((ret = serial_write(serial, buf, 3)) < 0) {
+               if ((ret = serial_write_blocking(serial, buf, 3, 0)) < 0) {
                        sr_err("Error sending init command: %d.", ret);
                        return FALSE;
                }
                devc->state = GET_INIT_REPLY;
        } else if (devc->state == GET_INIT_REPLY) {
                /* If we just sent the "init" command, get its reply. */
-               if ((ret = serial_read(serial, buf, 2)) < 0) {
+               if ((ret = serial_read_blocking(serial, buf, 2, 0)) < 0) {
                        sr_err("Error reading init reply: %d.", ret);
                        return FALSE;
                }
@@ -159,7 +160,7 @@ int tondaj_sl_814_receive_data(int fd, int revents, void *cb_data)
                buf[2] = 0x0d;
                sr_spew("Sending data request command: %02x %02x %02x.",
                        buf[0], buf[1], buf[2]);
-               if ((ret = serial_write(serial, buf, 3)) < 0) {
+               if ((ret = serial_write_blocking(serial, buf, 3, 0)) < 0) {
                        sr_err("Error sending request command: %d.", ret);
                        return FALSE;
                }