]> sigrok.org Git - libsigrok.git/blobdiff - input/input.c
hameg-hmo: Advertise the frame limit option.
[libsigrok.git] / input / input.c
index e876dfcaa838f9cc703b608c9122d4fedb59a1c9..40886df98968ce5f06ffac9ad71e3c2b50d01062 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * This file is part of the sigrok project.
+ * This file is part of the libsigrok project.
  *
  * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
  *
@@ -51,6 +51,7 @@
 
 /** @cond PRIVATE */
 extern SR_PRIV struct sr_input_format input_chronovu_la8;
+extern SR_PRIV struct sr_input_format input_csv;
 extern SR_PRIV struct sr_input_format input_binary;
 extern SR_PRIV struct sr_input_format input_vcd;
 extern SR_PRIV struct sr_input_format input_wav;
@@ -60,6 +61,7 @@ static struct sr_input_format *input_module_list[] = {
        &input_vcd,
        &input_chronovu_la8,
        &input_wav,
+       &input_csv,
        /* This one has to be last, because it will take any input. */
        &input_binary,
        NULL,