From a0dc461d7b2a345bd0e28e87e7bbf343825f0182 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Mon, 11 Nov 2013 07:42:51 +0100 Subject: [PATCH] doxygen: Fix/improve 'struct sr_probe_group' documentation. --- libsigrok.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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; };