From: Uwe Hermann Date: Mon, 29 Oct 2012 14:20:17 +0000 (+0100) Subject: uni-t-dmm: Voltcraft VC-820 draft support. X-Git-Tag: dsupstream~618 X-Git-Url: http://sigrok.org/gitweb/?a=commitdiff_plain;h=015f1508ad57e1ace60965952389a0b83c271178;p=libsigrok.git uni-t-dmm: Voltcraft VC-820 draft support. This is commented out so far, will be implemented properly soon. --- diff --git a/hardware/uni-t-dmm/protocol.c b/hardware/uni-t-dmm/protocol.c index 086a254a..4e163080 100644 --- a/hardware/uni-t-dmm/protocol.c +++ b/hardware/uni-t-dmm/protocol.c @@ -77,6 +77,7 @@ static void decode_packet(struct dev_context *devc, const uint8_t *buf) /* Parse the protocol packet. */ if ((ret = sr_dmm_parse_fs9922(buf, &floatval, &analog)) != SR_OK) { + // if ((ret = sr_dmm_parse_fs9721(buf, &floatval, &analog)) != SR_OK) { sr_err("Invalid DMM packet, ignoring."); return; } @@ -228,6 +229,7 @@ SR_PRIV int uni_t_dmm_receive_data(int fd, int revents, void *cb_data) if (!synced_on_first_packet) { /* Valid packets start with '+' or '-'. */ if ((buf[1] != '+') && buf[1] != '-') + // if ((buf[1] & 0xf0) != 0x10) return TRUE; synced_on_first_packet = TRUE; sr_spew("Successfully synchronized on first packet.");