document encoding.digits and spec.spec_digits

This commit is contained in:
Aurelien Jacobs 2016-08-21 18:32:38 +02:00 committed by Uwe Hermann
parent b66a0b5bdd
commit 96117c5660
1 changed files with 11 additions and 0 deletions

View 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;
};