From: Uwe Hermann Date: Thu, 19 Apr 2018 16:19:44 +0000 (+0200) Subject: input/output: Slightly improved module descriptions. X-Git-Url: https://sigrok.org/gitweb/?p=libsigrok.git;a=commitdiff_plain;h=b20eb52055042a1a1dd61d928a3f3a4b706c7d01 input/output: Slightly improved module descriptions. --- diff --git a/src/input/binary.c b/src/input/binary.c index 995c47d7..da664a85 100644 --- a/src/input/binary.c +++ b/src/input/binary.c @@ -174,7 +174,7 @@ static const struct sr_option *get_options(void) SR_PRIV struct sr_input_module input_binary = { .id = "binary", .name = "Binary", - .desc = "Raw binary", + .desc = "Raw binary logic data", .exts = NULL, .options = get_options, .init = init, diff --git a/src/input/chronovu_la8.c b/src/input/chronovu_la8.c index 213c2203..07d94a71 100644 --- a/src/input/chronovu_la8.c +++ b/src/input/chronovu_la8.c @@ -181,8 +181,8 @@ static const struct sr_option *get_options(void) SR_PRIV struct sr_input_module input_chronovu_la8 = { .id = "chronovu-la8", - .name = "Chronovu-LA8", - .desc = "ChronoVu LA8", + .name = "ChronoVu LA8", + .desc = "ChronoVu LA8 native file format data", .exts = (const char*[]){"kdt", NULL}, .metadata = { SR_INPUT_META_FILESIZE | SR_INPUT_META_REQUIRED }, .options = get_options, diff --git a/src/input/raw_analog.c b/src/input/raw_analog.c index 5794ae84..272250eb 100644 --- a/src/input/raw_analog.c +++ b/src/input/raw_analog.c @@ -281,7 +281,7 @@ static int reset(struct sr_input *in) SR_PRIV struct sr_input_module input_raw_analog = { .id = "raw_analog", .name = "RAW analog", - .desc = "Raw analog signals without header", + .desc = "Raw analog data without header", .exts = (const char*[]){"raw", "bin", NULL}, .options = get_options, .init = init, diff --git a/src/input/vcd.c b/src/input/vcd.c index 5051f0e3..26cce118 100644 --- a/src/input/vcd.c +++ b/src/input/vcd.c @@ -648,7 +648,7 @@ static const struct sr_option *get_options(void) SR_PRIV struct sr_input_module input_vcd = { .id = "vcd", .name = "VCD", - .desc = "Value Change Dump", + .desc = "Value Change Dump data", .exts = (const char*[]){"vcd", NULL}, .metadata = { SR_INPUT_META_HEADER | SR_INPUT_META_REQUIRED }, .options = get_options, diff --git a/src/input/wav.c b/src/input/wav.c index 9b19e0bb..8ec3141e 100644 --- a/src/input/wav.c +++ b/src/input/wav.c @@ -376,7 +376,7 @@ static int reset(struct sr_input *in) SR_PRIV struct sr_input_module input_wav = { .id = "wav", .name = "WAV", - .desc = "WAV file", + .desc = "Microsoft WAV file format data", .exts = (const char*[]){"wav", NULL}, .metadata = { SR_INPUT_META_HEADER | SR_INPUT_META_REQUIRED }, .format_match = format_match, diff --git a/src/output/analog.c b/src/output/analog.c index 45df4003..94175369 100644 --- a/src/output/analog.c +++ b/src/output/analog.c @@ -205,7 +205,7 @@ static int cleanup(struct sr_output *o) SR_PRIV struct sr_output_module output_analog = { .id = "analog", .name = "Analog", - .desc = "Analog data and types", + .desc = "ASCII analog data values and units", .exts = NULL, .flags = 0, .options = get_options, diff --git a/src/output/ascii.c b/src/output/ascii.c index a2faa044..d0d40b6f 100644 --- a/src/output/ascii.c +++ b/src/output/ascii.c @@ -272,7 +272,7 @@ static const struct sr_option *get_options(void) SR_PRIV struct sr_output_module output_ascii = { .id = "ascii", .name = "ASCII", - .desc = "ASCII art", + .desc = "ASCII art logic data", .exts = (const char*[]){"txt", NULL}, .flags = 0, .options = get_options, diff --git a/src/output/binary.c b/src/output/binary.c index f4d19010..7c8fa105 100644 --- a/src/output/binary.c +++ b/src/output/binary.c @@ -45,7 +45,7 @@ static int receive(const struct sr_output *o, const struct sr_datafeed_packet *p SR_PRIV struct sr_output_module output_binary = { .id = "binary", .name = "Binary", - .desc = "Raw binary", + .desc = "Raw binary logic data", .exts = NULL, .flags = 0, .options = NULL, diff --git a/src/output/bits.c b/src/output/bits.c index f4868033..768a985e 100644 --- a/src/output/bits.c +++ b/src/output/bits.c @@ -238,7 +238,7 @@ static const struct sr_option *get_options(void) SR_PRIV struct sr_output_module output_bits = { .id = "bits", .name = "Bits", - .desc = "0/1 digits", + .desc = "0/1 digits logic data", .exts = (const char*[]){"txt", NULL}, .flags = 0, .options = get_options, diff --git a/src/output/chronovu_la8.c b/src/output/chronovu_la8.c index 2793f97a..adc6ba0d 100644 --- a/src/output/chronovu_la8.c +++ b/src/output/chronovu_la8.c @@ -187,7 +187,7 @@ static int cleanup(struct sr_output *o) SR_PRIV struct sr_output_module output_chronovu_la8 = { .id = "chronovu-la8", .name = "ChronoVu LA8", - .desc = "ChronoVu LA8 native file format", + .desc = "ChronoVu LA8 native file format data", .exts = (const char*[]){"kdt", NULL}, .flags = 0, .options = NULL, diff --git a/src/output/hex.c b/src/output/hex.c index 708f6054..8fcfcea4 100644 --- a/src/output/hex.c +++ b/src/output/hex.c @@ -252,7 +252,7 @@ static const struct sr_option *get_options(void) SR_PRIV struct sr_output_module output_hex = { .id = "hex", .name = "Hexadecimal", - .desc = "Hexadecimal digits", + .desc = "Hexadecimal digits logic data", .exts = (const char*[]){"txt", NULL}, .flags = 0, .options = get_options, diff --git a/src/output/ols.c b/src/output/ols.c index 71943443..2129658a 100644 --- a/src/output/ols.c +++ b/src/output/ols.c @@ -149,7 +149,7 @@ static int cleanup(struct sr_output *o) SR_PRIV struct sr_output_module output_ols = { .id = "ols", .name = "OLS", - .desc = "OpenBench Logic Sniffer", + .desc = "OpenBench Logic Sniffer data", .exts = (const char*[]){"ols", NULL}, .flags = 0, .options = NULL, diff --git a/src/output/srzip.c b/src/output/srzip.c index db230576..93c43d32 100644 --- a/src/output/srzip.c +++ b/src/output/srzip.c @@ -487,7 +487,7 @@ static int cleanup(struct sr_output *o) SR_PRIV struct sr_output_module output_srzip = { .id = "srzip", .name = "srzip", - .desc = "srzip session file", + .desc = "srzip session file format data", .exts = (const char*[]){"sr", NULL}, .flags = SR_OUTPUT_INTERNAL_IO_HANDLING, .options = get_options, diff --git a/src/output/vcd.c b/src/output/vcd.c index 399f2b35..f90db498 100644 --- a/src/output/vcd.c +++ b/src/output/vcd.c @@ -270,7 +270,7 @@ static int cleanup(struct sr_output *o) struct sr_output_module output_vcd = { .id = "vcd", .name = "VCD", - .desc = "Value Change Dump", + .desc = "Value Change Dump data", .exts = (const char*[]){"vcd", NULL}, .flags = 0, .options = NULL, diff --git a/src/output/wav.c b/src/output/wav.c index e3e4a9f3..732fe976 100644 --- a/src/output/wav.c +++ b/src/output/wav.c @@ -367,7 +367,7 @@ static int cleanup(struct sr_output *o) SR_PRIV struct sr_output_module output_wav = { .id = "wav", .name = "WAV", - .desc = "Microsoft WAV file format", + .desc = "Microsoft WAV file format data", .exts = (const char*[]){"wav", NULL}, .flags = 0, .options = get_options,