]> sigrok.org Git - libsigrok.git/commitdiff
document encoding.digits and spec.spec_digits
authorAurelien Jacobs <redacted>
Sun, 21 Aug 2016 16:32:38 +0000 (18:32 +0200)
committerUwe Hermann <redacted>
Tue, 23 Aug 2016 10:58:06 +0000 (12:58 +0200)
include/libsigrok/libsigrok.h

index 7d9260edabf714cc404b529fde981ac4c738afd1..8151e53a2965a608c8d38e1db267a98c09089d49 100644 (file)
@@ -508,6 +508,11 @@ struct sr_analog_encoding {
        gboolean is_signed;
        gboolean is_float;
        gboolean is_bigendian;
+       /**
+        * Number of significant digits after the decimal point if positive,
+        * or number of non-significant digits before the decimal point if
+        * negative (refers to the value we actually read on the wire).
+        */
        int8_t digits;
        gboolean is_digits_decimal;
        struct sr_rational scale;
@@ -522,6 +527,12 @@ struct sr_analog_meaning {
 };
 
 struct sr_analog_spec {
+       /**
+        * Number of significant digits after the decimal point if positive,
+        * or number of non-significant digits before the decimal point if
+        * negative (refers to vendor specifications/datasheet or actual
+        * device display).
+        */
        int8_t spec_digits;
 };