X-Git-Url: https://sigrok.org/gitweb/?p=libsigrok.git;a=blobdiff_plain;f=src%2Finput%2Fraw_analog.c;h=ca29eaa431628f6fc06e304188e0faa177fe3677;hp=68ac1c956fdefa6b4c200826507ed47f9b658b98;hb=867293a1013eae2e9e14af23915facc676916214;hpb=d4b3f44fa798d1cc080bf59809ae03ac3642723a diff --git a/src/input/raw_analog.c b/src/input/raw_analog.c index 68ac1c95..ca29eaa4 100644 --- a/src/input/raw_analog.c +++ b/src/input/raw_analog.c @@ -233,9 +233,9 @@ static int end(struct sr_input *in) } static struct sr_option options[] = { - { "numchannels", "Number of channels", "Number of channels", NULL, NULL }, - { "samplerate", "Sample rate", "Sample rate", NULL, NULL }, - { "format", "Format", "Numeric format", NULL, NULL }, + { "numchannels", "Number of analog channels", "The number of (analog) channels in the data", NULL, NULL }, + { "samplerate", "Sample rate (Hz)", "The sample rate of the (analog) data in Hz", NULL, NULL }, + { "format", "Data format", "The format of the data (data type, signedness, endianness)", NULL, NULL }, ALL_ZERO }; @@ -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 = "analog signals without header", + .desc = "Raw analog signals without header", .exts = (const char*[]){"raw", "bin", NULL}, .options = get_options, .init = init,