]> sigrok.org Git - libsigrok.git/commitdiff
serial-dmm: Commented struct dmm_info.
authorMatthias Heidbrink <redacted>
Wed, 18 Dec 2013 22:33:45 +0000 (23:33 +0100)
committerUwe Hermann <redacted>
Wed, 18 Dec 2013 23:40:31 +0000 (00:40 +0100)
hardware/serial-dmm/protocol.h

index 4ad367541c3cea93f0c5d4cba04152b4213efcb8..20c5ae7126034416a857d96c5d72ab12d4bea6cf 100644 (file)
@@ -60,17 +60,28 @@ enum {
 #define DMM_COUNT 24
 
 struct dmm_info {
+       /** Manufacturer/brand */
        char *vendor;
+       /** Model */
        char *device;
+       /** serialconn string */
        char *conn;
+       /** Baud rate */
        uint32_t baudrate;
+       /** Packet size [bytes]. */
        int packet_size;
+       /** Packet request function. */
        int (*packet_request)(struct sr_serial_dev_inst *);
+       /** Packet validation function. */
        gboolean (*packet_valid)(const uint8_t *);
+       /** Packet parsing function. */
        int (*packet_parse)(const uint8_t *, float *,
                            struct sr_datafeed_analog *, void *);
+       /** */
        void (*dmm_details)(struct sr_datafeed_analog *, void *);
+       /** libsigrok driver info struct. */
        struct sr_dev_driver *di;
+       /** Data reception function. */
        int (*receive_data)(int, int, void *);
 };