]> sigrok.org Git - libsigrok.git/blobdiff - src/output/output.c
output/wavedrom: introduce a wavedrom output module
[libsigrok.git] / src / output / output.c
index efb205c68192d8d020f590c86b04841cc9e3c886..1a134eb2f4439ebfae8a9d1941e4d35a97d6af8e 100644 (file)
@@ -64,6 +64,8 @@ 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_wavedrom;
+extern SR_PRIV struct sr_output_module output_null;
 /* @endcond */
 
 static const struct sr_output_module *output_module_list[] = {
@@ -78,6 +80,8 @@ static const struct sr_output_module *output_module_list[] = {
        &output_analog,
        &output_srzip,
        &output_wav,
+       &output_wavedrom,
+       &output_null,
        NULL,
 };