]> sigrok.org Git - libsigrok.git/commitdiff
cli: Fix -V/-h output a bit.
authorUwe Hermann <redacted>
Wed, 21 Mar 2012 18:58:56 +0000 (19:58 +0100)
committerUwe Hermann <redacted>
Wed, 21 Mar 2012 22:20:09 +0000 (23:20 +0100)
Options and their defaults should not be documented there, but rather in
the manpage or such.

hardware/fx2lafw/fx2lafw.c
output/analog.c
output/text/ascii.c
output/text/bits.c
output/text/hex.c

index ddf2f0dc2cdd70996aed382395d882a7ccd883a3..3ad0d671ebe3dc40c8f9202d5e7db49510c050f3 100644 (file)
@@ -699,7 +699,7 @@ static int hw_dev_acquisition_stop(int dev_index, void *cb_data)
 
 SR_PRIV struct sr_dev_driver fx2lafw_driver_info = {
        .name = "fx2lafw",
-       .longname = "fx2lafw",
+       .longname = "fx2lafw (generic driver for FX2 based LAs)",
        .api_version = 1,
        .init = hw_init,
        .cleanup = hw_cleanup,
index 20f680f064db686ad7111d220f9d055632103dff..da42b39c819f2cacbb6e7b73071861b995c2314d 100644 (file)
@@ -456,7 +456,7 @@ static int data_ascii(struct sr_output *o, const char *data_in,
 
 SR_PRIV struct sr_output_format output_analog_bits = {
        .id = "analog_bits",
-       .description = "Bits (takes argument, default 64)",
+       .description = "Bits",
        .df_type = SR_DF_ANALOG,
        .init = init_bits,
        .data = data_bits,
@@ -466,7 +466,7 @@ SR_PRIV struct sr_output_format output_analog_bits = {
 #if 0
 struct sr_output_format output_analog_hex = {
        .id = "analog_hex",
-       .description = "Hexadecimal (takes argument, default 192)",
+       .description = "Hexadecimal",
        .df_type = SR_DF_ANALOG,
        .init = init_hex,
        .data = data_hex,
@@ -475,7 +475,7 @@ struct sr_output_format output_analog_hex = {
 
 struct sr_output_format output_analog_ascii = {
        .id = "analog_ascii",
-       .description = "ASCII (takes argument, default 74)",
+       .description = "ASCII",
        .df_type = SR_DF_ANALOG,
        .init = init_ascii,
        .data = data_ascii,
index 1f7064c8363fa93b17007788a4299f8a7e41de62..3b4f87d8d99d3fe028068c16315e51199737635f 100644 (file)
@@ -120,7 +120,7 @@ SR_PRIV int data_ascii(struct sr_output *o, const char *data_in,
 
 SR_PRIV struct sr_output_format output_text_ascii = {
        .id = "ascii",
-       .description = "ASCII (takes argument, default 74)",
+       .description = "ASCII",
        .df_type = SR_DF_LOGIC,
        .init = init_ascii,
        .data = data_ascii,
index 7e2d665a6dddccd704975d4e44b4102f22af00a7..89359bb24eeecedd8027ef9d7c8a6a711a433280 100644 (file)
@@ -106,7 +106,7 @@ SR_PRIV int data_bits(struct sr_output *o, const char *data_in,
 
 SR_PRIV struct sr_output_format output_text_bits = {
        .id = "bits",
-       .description = "Bits (takes argument, default 64)",
+       .description = "Bits",
        .df_type = SR_DF_LOGIC,
        .init = init_bits,
        .data = data_bits,
index fb5ca0073dc4dbddf9279b787b3728ad2aaeedb2..0d2c07784a93e84fc2d712b74a4abe42dd69007e 100644 (file)
@@ -94,7 +94,7 @@ SR_PRIV int data_hex(struct sr_output *o, const char *data_in,
 
 SR_PRIV struct sr_output_format output_text_hex = {
        .id = "hex",
-       .description = "Hexadecimal (takes argument, default 192)",
+       .description = "Hexadecimal",
        .df_type = SR_DF_LOGIC,
        .init = init_hex,
        .data = data_hex,