X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fanalog.c;h=10c4c1c7ac25ff145dbab628d14135e2a33753a2;hb=e00b3f5897d9b5b85b552f9f8da7684229b9bdfc;hp=3819e3676f3c26603066286c841d842e4efe8704;hpb=02a2bf688f25a50ea05276be75fba8b4f644fca6;p=libsigrok.git diff --git a/src/analog.c b/src/analog.c index 3819e367..10c4c1c7 100644 --- a/src/analog.c +++ b/src/analog.c @@ -24,7 +24,23 @@ #include "libsigrok.h" #include "libsigrok-internal.h" +/** @cond PRIVATE */ #define LOG_PREFIX "analog" +/** @endcond */ + +/** + * @file + * + * Handling and converting analog data. + */ + +/** + * @defgroup grp_analog Analog data handling + * + * Handling and converting analog data. + * + * @{ + */ struct unit_mq_string { uint64_t value; @@ -241,3 +257,4 @@ SR_API void sr_rational_set(struct sr_rational *r, uint64_t p, uint64_t q) r->q = q; } +/** @} */