X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Foutput%2Foutput.c;h=6f02b6806d618321f05476222a856c05fee37cd0;hb=82b9f3d116ce0c982291a2dfdd15cd8a1c4cc16e;hp=df22b22233720cc349b4bb88cc0c5b12ee33913a;hpb=6433156c3275df933e4bf6dcfb020c91fca0ae86;p=libsigrok.git diff --git a/src/output/output.c b/src/output/output.c index df22b222..6f02b680 100644 --- a/src/output/output.c +++ b/src/output/output.c @@ -17,6 +17,7 @@ * along with this program. If not, see . */ +#include #include #include #include "libsigrok-internal.h" @@ -37,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. * @@ -58,20 +59,20 @@ 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; -/* @endcond */ +extern SR_PRIV struct sr_output_module output_wavedrom; +extern SR_PRIV struct sr_output_module output_null; +/** @endcond */ static const struct sr_output_module *output_module_list[] = { &output_ascii, &output_binary, &output_bits, &output_csv, - &output_gnuplot, &output_hex, &output_ols, &output_vcd, @@ -79,6 +80,8 @@ static const struct sr_output_module *output_module_list[] = { &output_analog, &output_srzip, &output_wav, + &output_wavedrom, + &output_null, NULL, };