From: Uwe Hermann Date: Mon, 11 Nov 2013 06:42:51 +0000 (+0100) Subject: doxygen: Fix/improve 'struct sr_probe_group' documentation. X-Git-Tag: libsigrok-0.3.0~568 X-Git-Url: http://sigrok.org/gitweb/?p=libsigrok.git;a=commitdiff_plain;h=a0dc461d7b2a345bd0e28e87e7bbf343825f0182 doxygen: Fix/improve 'struct sr_probe_group' documentation. --- diff --git a/libsigrok.h b/libsigrok.h index 985473c6..7f18d690 100644 --- a/libsigrok.h +++ b/libsigrok.h @@ -550,11 +550,13 @@ struct sr_probe { char *trigger; }; +/** Structure for groups of probes that have common properties. */ struct sr_probe_group { + /** Name of the probe group. */ char *name; - /* List of sr_probe structs. */ + /** List of sr_probe structs of the probes belonging to this group. */ GSList *probes; - /* Private data for driver use. */ + /** Private data for driver use. */ void *priv; };