]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoder.c
Add Dallas DS1307 RTC protocol decoder
[libsigrokdecode.git] / decoder.c
index cbca0b840376c60de504dcc1bd91cdd449c6bef4..3d20b26b115770daca4eb1a14172c19662a4f377 100644 (file)
--- a/decoder.c
+++ b/decoder.c
 #include "sigrokdecode-internal.h"
 #include <glib.h>
 
+/**
+ * @file
+ *
+ * Listing, loading, unloading, and handling protocol decoders.
+ */
+
+/**
+ * @defgroup grp_decoder Protocol decoders
+ *
+ * Handling protocol decoders.
+ *
+ * @{
+ */
+
+/** @cond PRIVATE */
+
 /* The list of protocol decoders. */
 SRD_PRIV GSList *pd_list = NULL;
 
 /* module_sigrokdecode.c */
 extern SRD_PRIV PyObject *mod_sigrokdecode;
 
+/** @endcond */
+
 /**
  * Returns the list of supported/loaded protocol decoders.
  *
@@ -422,3 +440,5 @@ SRD_API int srd_decoder_unload_all(void)
 
        return SRD_OK;
 }
+
+/** @} */