]> sigrok.org Git - libsigrok.git/commitdiff
zketech-ebd-usb: Add some underscores to #defines.
authorUwe Hermann <redacted>
Tue, 3 Apr 2018 10:23:02 +0000 (12:23 +0200)
committerUwe Hermann <redacted>
Sun, 8 Apr 2018 17:59:25 +0000 (19:59 +0200)
src/hardware/zketech-ebd-usb/api.c
src/hardware/zketech-ebd-usb/protocol.c
src/hardware/zketech-ebd-usb/protocol.h

index cb59292e7799b40f0315537a7a742fcece9baf39..4db306f6a7ddc2a403174431bb0dd9b2eb115d0b 100644 (file)
@@ -43,7 +43,7 @@ static GSList *scan(struct sr_dev_driver *di, GSList *options)
        const char *conn, *serialcomm;
        struct sr_config *src;
        struct sr_serial_dev_inst *serial;
-       uint8_t reply[MSGLEN];
+       uint8_t reply[MSG_LEN];
 
        conn = NULL;
        serialcomm = NULL;
@@ -89,9 +89,9 @@ static GSList *scan(struct sr_dev_driver *di, GSList *options)
 
        /* Starting device. */
        zketech_ebd_usb_init(serial, devc);
-       int ret = zketech_ebd_usb_read_chars(serial, MSGLEN, reply);
-       if (ret != MSGLEN || reply[MSGFRAMEBEGINPOS] != MSGFRAMEBEGIN \
-                       || reply[MSGFRAMEENDPOS] != MSGFRAMEEND) {
+       int ret = zketech_ebd_usb_read_chars(serial, MSG_LEN, reply);
+       if (ret != MSG_LEN || reply[MSG_FRAME_BEGIN_POS] != MSG_FRAME_BEGIN \
+                       || reply[MSG_FRAME_END_POS] != MSG_FRAME_END) {
                sr_warn("Invalid message received!");
                ret = SR_ERR;
        }
index 926a43149b379c77192662af5521f9f109509cd2..fe86145226051e3d4c1a45039eeb1a9fa4aef452 100644 (file)
@@ -187,11 +187,11 @@ SR_PRIV int zketech_ebd_usb_receive_data(int fd, int revents, void *cb_data)
 
        serial = sdi->conn;
 
-       uint8_t reply[MSGLEN];
-       int ret = zketech_ebd_usb_read_chars(serial, MSGLEN, reply);
+       uint8_t reply[MSG_LEN];
+       int ret = zketech_ebd_usb_read_chars(serial, MSG_LEN, reply);
 
        /* Tests for correct message. */
-       if (ret != MSGLEN) {
+       if (ret != MSG_LEN) {
                sr_err("Message invalid [Len].");
                return (ret < 0) ? ret : SR_ERR;
        }
@@ -201,9 +201,9 @@ SR_PRIV int zketech_ebd_usb_receive_data(int fd, int revents, void *cb_data)
                      reply[9] ^ reply[10] ^ reply[11] ^ reply[12] ^ \
                      reply[13] ^ reply[14] ^ reply[15] ^ reply[16];
 
-       if (reply[MSGFRAMEBEGINPOS] != MSGFRAMEBEGIN || \
-                       reply[MSGFRAMEENDPOS] != MSGFRAMEEND || \
-                       xor != reply[MSGCHECKSUMPOS]) {
+       if (reply[MSG_FRAME_BEGIN_POS] != MSG_FRAME_BEGIN || \
+                       reply[MSG_FRAME_END_POS] != MSG_FRAME_END || \
+                       xor != reply[MSG_CHECKSUM_POS]) {
                sr_err("Message invalid [XOR, BEGIN/END].");
                return SR_ERR;
        }
index 9f750b7753b7ef62b7eb9c66a593b71551cd2025..a15282a749eae988825a280f2980921610a2f8da 100644 (file)
 
 #define LOG_PREFIX "zketech-ebd-usb"
 
-#define MSGLEN 19
-#define MSGCHECKSUMPOS 17
-#define MSGFRAMEBEGIN 0xfa
-#define MSGFRAMEBEGINPOS 0
-#define MSGFRAMEEND 0xf8
-#define MSGFRAMEENDPOS 18
+#define MSG_LEN 19
+#define MSG_CHECKSUM_POS 17
+#define MSG_FRAME_BEGIN 0xfa
+#define MSG_FRAME_BEGIN_POS 0
+#define MSG_FRAME_END 0xf8
+#define MSG_FRAME_END_POS 18
 
 struct dev_context {
        struct sr_sw_limits limits;