X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Foutput%2Foutput.c;h=c6c2d7206cbb2fce828177546659a13284127258;hb=1af7497d6733e00b050b25c6d0fbad3ea62c7136;hp=5d76b1cf930f6b0ebff121675034a1b0cb548153;hpb=6ec6c43b4738dbc7091f4a49a4ec80ea6102cb52;p=libsigrok.git diff --git a/src/output/output.c b/src/output/output.c index 5d76b1cf..c6c2d720 100644 --- a/src/output/output.c +++ b/src/output/output.c @@ -38,7 +38,7 @@ * Output module handling. * * libsigrok supports several output modules for file formats such as binary, - * VCD, gnuplot, and so on. It provides an output API that frontends can use. + * VCD, csv, and so on. It provides an output API that frontends can use. * New output modules can be added/implemented in libsigrok without having * to change the frontends at all. * @@ -59,12 +59,12 @@ extern SR_PRIV struct sr_output_module output_ascii; extern SR_PRIV struct sr_output_module output_binary; extern SR_PRIV struct sr_output_module output_vcd; extern SR_PRIV struct sr_output_module output_ols; -extern SR_PRIV struct sr_output_module output_gnuplot; extern SR_PRIV struct sr_output_module output_chronovu_la8; extern SR_PRIV struct sr_output_module output_csv; extern SR_PRIV struct sr_output_module output_analog; extern SR_PRIV struct sr_output_module output_srzip; extern SR_PRIV struct sr_output_module output_wav; +extern SR_PRIV struct sr_output_module output_null; /* @endcond */ static const struct sr_output_module *output_module_list[] = { @@ -72,7 +72,6 @@ static const struct sr_output_module *output_module_list[] = { &output_binary, &output_bits, &output_csv, - &output_gnuplot, &output_hex, &output_ols, &output_vcd, @@ -80,6 +79,7 @@ static const struct sr_output_module *output_module_list[] = { &output_analog, &output_srzip, &output_wav, + &output_null, NULL, };