X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=include%2Flibsigrok%2Flibsigrok.h;h=e132012470b703d6f7402580016f911254683fe1;hb=6c23b710ec21b6937be059aa7cb14313e929ec7c;hp=7d9260edabf714cc404b529fde981ac4c738afd1;hpb=28c95cc6c45ede9ec9d184d606bfc16505834429;p=libsigrok.git diff --git a/include/libsigrok/libsigrok.h b/include/libsigrok/libsigrok.h index 7d9260ed..e1320124 100644 --- a/include/libsigrok/libsigrok.h +++ b/include/libsigrok/libsigrok.h @@ -263,7 +263,7 @@ enum sr_unit { SR_UNIT_SIEMENS, /** * An absolute measurement of power, in decibels, referenced to - * 1 milliwatt (dBu). + * 1 milliwatt (dBm). */ SR_UNIT_DECIBEL_MW, /** Voltage in decibel, referenced to 1 volt (dBV). */ @@ -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; };