]> sigrok.org Git - libsigrok.git/blobdiff - src/hardware/appa-55ii/protocol.c
gmc-mh-1x-2x: Shorten some code by using the ternary operator.
[libsigrok.git] / src / hardware / appa-55ii / protocol.c
index a7cfd48dd62ca71bebb31eef61e0f60725c9aed4..c22ede50fcef1179fb6c499f07386d4591521e96 100644 (file)
 #include "protocol.h"
 
 typedef enum {
-    LIVE_DATA    = 0x00,
-    LOG_METADATA = 0x11,
-    LOG_DATA     = 0x14,
-    LOG_START    = 0x18,
-    LOG_END      = 0x19,
+       LIVE_DATA    = 0x00,
+       LOG_METADATA = 0x11,
+       LOG_DATA     = 0x14,
+       LOG_START    = 0x18,
+       LOG_END      = 0x19,
 } packet_type;
 
 static gboolean appa_55ii_checksum(const uint8_t *buf)
@@ -163,7 +163,7 @@ static void appa_55ii_log_data_parse(struct sr_dev_inst *sdi)
                /* FIXME: Timestamp should be sent in the packet. */
                sr_dbg("Timestamp: %02d:%02d:%02d", buf[2], buf[3], buf[4]);
 
-               sr_analog_init(&analog, &encoding, &meaning, &spec, 0);
+               sr_analog_init(&analog, &encoding, &meaning, &spec, 1);
                analog.num_samples = 1;
                analog.meaning->mq = SR_MQ_TEMPERATURE;
                analog.meaning->unit = SR_UNIT_CELSIUS;