]> sigrok.org Git - libsigrok.git/commitdiff
fix hex output
authorBert Vermeulen <redacted>
Sat, 15 Jan 2011 14:21:54 +0000 (15:21 +0100)
committerBert Vermeulen <redacted>
Sat, 15 Jan 2011 14:25:08 +0000 (15:25 +0100)
output/output_text.c

index 42fd1cac45eafe1eb6d1c7ed4ee08e0b3689f51d..2b362474738f0ad3baef752ed736c61df541dd02 100644 (file)
@@ -25,7 +25,7 @@
 #include "config.h"
 
 #define DEFAULT_BPL_BITS 64
-#define DEFAULT_BPL_HEX  256
+#define DEFAULT_BPL_HEX  192
 
 struct context {
        unsigned int num_enabled_probes;
@@ -247,7 +247,7 @@ static int data_bits(struct output *o, char *data_in, uint64_t length_in,
 
 static int init_hex(struct output *o)
 {
-       return init(o, DEFAULT_BPL_BITS);
+       return init(o, DEFAULT_BPL_HEX);
 }
 
 static int data_hex(struct output *o, char *data_in, uint64_t length_in,
@@ -321,7 +321,7 @@ struct output_format output_text_bits = {
 
 struct output_format output_text_hex = {
        "hex",
-       "Hexadecimal (takes argument, default 256)",
+       "Hexadecimal (takes argument, default 192)",
        DF_LOGIC,
        init_hex,
        data_hex,