]> sigrok.org Git - libsigrok.git/blobdiff - filter.c
colead-slm: Initial driver skeleton.
[libsigrok.git] / filter.c
index fc6de634f1b276e4a1cd3a2c3d656e589f7e86fb..df28a72348500be5dc93ba217f1028fc620563c7 100644 (file)
--- a/filter.c
+++ b/filter.c
 #include "libsigrok.h"
 #include "libsigrok-internal.h"
 
+/**
+ * @file
+ *
+ * Helper functions to filter out unused probes from samples.
+ */
+
+/**
+ * @defgroup grp_filter Probe filter
+ *
+ * Helper functions to filter out unused probes from samples.
+ *
+ * @{
+ */
+
 /**
  * Remove unused probes from samples.
  *
@@ -142,3 +156,5 @@ SR_API int sr_filter_probes(int in_unitsize, int out_unitsize,
 
        return SR_OK;
 }
+
+/** @} */