]> sigrok.org Git - libsigrok.git/commitdiff
cli: new option to list output modules
authorBert Vermeulen <redacted>
Mon, 10 Jan 2011 11:39:53 +0000 (12:39 +0100)
committerBert Vermeulen <redacted>
Mon, 10 Jan 2011 11:39:53 +0000 (12:39 +0100)
output/output_analog.c
output/output_text.c

index 4a6585bf19f1bfc9f5593a121fa64567a4b91e99..b9c3c7c2ecf5349a73aa39cfb1475ea946bb2e39 100644 (file)
@@ -216,7 +216,7 @@ static int event(struct output *o, int event_type, char **data_out,
 
 struct output_format output_analog = {
        "analog",
-       "Analog data",
+       "Analog data (takes argument, default 10)",
        DF_ANALOG,
        init,
        data,
index cc3cb4e19a406e413f4542bdc09fd1689851fc6c..3c3fbb5046229120607520c19a9d3928c0b49345 100644 (file)
@@ -306,7 +306,7 @@ static int data_hex(struct output *o, char *data_in, uint64_t length_in,
 
 struct output_format output_text_bits = {
        "bits",
-       "Text (bits)",
+       "Bits (takes argument, default 64)",
        DF_LOGIC,
        init_bits,
        data_bits,
@@ -315,7 +315,7 @@ struct output_format output_text_bits = {
 
 struct output_format output_text_hex = {
        "hex",
-       "Text (hexadecimal)",
+       "Hexadecimal (takes argument, default 256)",
        DF_LOGIC,
        init_hex,
        data_hex,