]> sigrok.org Git - libsigrok.git/commitdiff
analog: use correct unit for dBm/dBV
authorAurelien Jacobs <redacted>
Sun, 11 Sep 2016 17:18:19 +0000 (19:18 +0200)
committerUwe Hermann <redacted>
Mon, 17 Oct 2016 00:09:18 +0000 (02:09 +0200)
include/libsigrok/libsigrok.h
src/analog.c

index 8151e53a2965a608c8d38e1db267a98c09089d49..e132012470b703d6f7402580016f911254683fe1 100644 (file)
@@ -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). */
index e2966875c3bbfb8c55212b19cd9ec2a110163347..a8ca3bce650424165227546b534924081dfbef3c 100644 (file)
@@ -63,8 +63,8 @@ static struct unit_mq_string unit_strings[] = {
        { SR_UNIT_BOOLEAN, "" },
        { SR_UNIT_SECOND, "s" },
        { SR_UNIT_SIEMENS, "S" },
-       { SR_UNIT_DECIBEL_MW, "dBu" },
-       { SR_UNIT_DECIBEL_VOLT, "dBv" },
+       { SR_UNIT_DECIBEL_MW, "dBm" },
+       { SR_UNIT_DECIBEL_VOLT, "dBV" },
        { SR_UNIT_UNITLESS, "" },
        { SR_UNIT_DECIBEL_SPL, "dB" },
        { SR_UNIT_CONCENTRATION, "ppm" },