]> sigrok.org Git - libsigrok.git/blobdiff - include/libsigrok/libsigrok.h
document encoding.digits and spec.spec_digits
[libsigrok.git] / include / libsigrok / libsigrok.h
index 511ab28c0f074ce25afb5fe121ed038dda9298e6..8151e53a2965a608c8d38e1db267a98c09089d49 100644 (file)
@@ -508,7 +508,12 @@ struct sr_analog_encoding {
        gboolean is_signed;
        gboolean is_float;
        gboolean is_bigendian;
-       uint8_t digits;
+       /**
+        * 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;
        struct sr_rational offset;
@@ -522,7 +527,13 @@ struct sr_analog_meaning {
 };
 
 struct sr_analog_spec {
-       uint8_t spec_digits;
+       /**
+        * 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;
 };
 
 /** Generic option struct used by various subsystems. */