X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=output%2Foutput.c;h=7d2ee60a5fff8b5af57deac9632b3a75c602597b;hb=1437e8934bd01167f2126616c7e8b44ca342cd27;hp=aa817d9d8438723ddff50551c1e042365d5bdc28;hpb=1c5b9d302c410cdd1cba441f618e0e3f7afa137d;p=libsigrok.git diff --git a/output/output.c b/output/output.c index aa817d9d..7d2ee60a 100644 --- a/output/output.c +++ b/output/output.c @@ -17,20 +17,22 @@ * along with this program. If not, see . */ -#include "sigrok.h" +#include -extern struct output_format output_text_binary; +extern struct output_format output_text_bits; extern struct output_format output_text_hex; extern struct output_format output_binary; extern struct output_format output_vcd; extern struct output_format output_gnuplot; +extern struct output_format output_analog; struct output_format *output_module_list[] = { - &output_text_binary, + &output_text_bits, &output_text_hex, &output_binary, &output_vcd, &output_gnuplot, + &output_analog, NULL, };