]> sigrok.org Git - libsigrok.git/blobdiff - src/serial.c
ols: add feature to support >256K memory
[libsigrok.git] / src / serial.c
index 3c7ab643b6d6dfb6a75c2ac7797fc6c87eaf02a2..2d67a8000c2b46ec812d863f295ccaebd14dd2ea 100644 (file)
@@ -715,7 +715,11 @@ SR_PRIV int serial_stream_detect(struct sr_serial_dev_inst *serial,
                time /= 1000;
 
                if ((ibuf - i) >= packet_size) {
+                       GString *text;
                        /* We have at least a packet's worth of data. */
+                       text = sr_hexdump_new(&buf[i], packet_size);
+                       sr_spew("Trying packet: %s", text->str);
+                       sr_hexdump_free(text);
                        if (is_valid(&buf[i])) {
                                sr_spew("Found valid %zu-byte packet after "
                                        "%" PRIu64 "ms.", (ibuf - i), time);