X-Git-Url: https://sigrok.org/gitweb/?p=libsigrok.git;a=blobdiff_plain;f=src%2Fhardware%2Fserial-dmm%2Fprotocol.c;fp=src%2Fhardware%2Fserial-dmm%2Fprotocol.c;h=bcac8500c4acfededb67461b12488ac5658b0257;hp=64564ef4bcf4508cc2567c44f1db8a92865b1437;hb=c36f78f7728e8b5263bed440530a61caa6e30a26;hpb=ded3e5087c53a85058b0e4332d4a37bb27d464ff diff --git a/src/hardware/serial-dmm/protocol.c b/src/hardware/serial-dmm/protocol.c index 64564ef4..bcac8500 100644 --- a/src/hardware/serial-dmm/protocol.c +++ b/src/hardware/serial-dmm/protocol.c @@ -29,10 +29,13 @@ static void log_dmm_packet(const uint8_t *buf) { - sr_dbg("DMM packet: %02x %02x %02x %02x %02x %02x %02x" - " %02x %02x %02x %02x %02x %02x %02x", + sr_dbg("DMM packet: %02x %02x %02x %02x %02x %02x %02x " + "%02x %02x %02x %02x %02x %02x %02x %02x %02x " + "%02x %02x %02x %02x %02x %02x %02x", buf[0], buf[1], buf[2], buf[3], buf[4], buf[5], buf[6], - buf[7], buf[8], buf[9], buf[10], buf[11], buf[12], buf[13]); + buf[7], buf[8], buf[9], buf[10], buf[11], buf[12], buf[13], + buf[14], buf[15], buf[16], buf[17], buf[18], buf[19], buf[20], + buf[21], buf[22]); } static void handle_packet(const uint8_t *buf, struct sr_dev_inst *sdi, @@ -214,6 +217,7 @@ RECEIVE_DATA(VOLTCRAFT_ME42, metex14) RECEIVE_DATA(VOLTCRAFT_VC820_SER, fs9721) RECEIVE_DATA(VOLTCRAFT_VC830_SER, fs9922) RECEIVE_DATA(VOLTCRAFT_VC840_SER, fs9721) +RECEIVE_DATA(VOLTCRAFT_VC870_SER, vc870) RECEIVE_DATA(VOLTCRAFT_VC920_SER, ut71x) RECEIVE_DATA(VOLTCRAFT_VC940_SER, ut71x) RECEIVE_DATA(VOLTCRAFT_VC960_SER, ut71x)