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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,