summaryrefslogtreecommitdiffstats
path: root/types.hpp
diff options
context:
space:
mode:
authorTom Joseph <tomjoseph@in.ibm.com>2018-02-16 08:27:00 +0530
committerTom Joseph <tomjoseph@in.ibm.com>2018-03-01 05:34:21 +0000
commit0a1301c141809fc8441abee5415c791ce894f068 (patch)
tree07b9efa7dc164f9b3ca80c01ca5174591684faa5 /types.hpp
parent82feb17d0c244ed04b82b0fbed3c0a9456986a86 (diff)
downloadphosphor-host-ipmid-0a1301c141809fc8441abee5415c791ce894f068.tar.gz
phosphor-host-ipmid-0a1301c141809fc8441abee5415c791ce894f068.zip
sensor: Add result exponent to the sensor yaml
Result exponent sets the decimal point location for the result before the linearization function is applied. This is different from the scale implemented by the sensors dbus objects. The scale is the scaling factor to get the value for the units specified for the sensor. Linearization is done after applying the scale on the raw sensor value. Change-Id: I76624c593bf6cdf40ec884c0ff0aceb58746732c Signed-off-by: Tom Joseph <tomjoseph@in.ibm.com>
Diffstat (limited to 'types.hpp')
-rw-r--r--types.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/types.hpp b/types.hpp
index 61f3d68..e77dc8e 100644
--- a/types.hpp
+++ b/types.hpp
@@ -115,8 +115,8 @@ using InstancePath = std::string;
using Type = uint8_t;
using ReadingType = uint8_t;
using Multiplier = uint16_t;
-using OffsetB = uint16_t;
-using Exponent = uint8_t;
+using OffsetB = int16_t;
+using Exponent = int8_t;
using ScaledOffset = int64_t;
using Scale = int16_t;
using Unit = std::string;
@@ -154,6 +154,7 @@ struct Info
OffsetB coefficientB;
Exponent exponentB;
ScaledOffset scaledOffset;
+ Exponent exponentR;
bool hasScale;
Scale scale;
Unit unit;
OpenPOWER on IntegriCloud