blob: f1ea8cdaa7cfb514b99a8d60e5a139c492d61666 [file] [log] [blame]
Tom Josephe19540e2019-02-04 14:06:58 +05301## This file is a template. The comment below is emitted
2## into the rendered file; feel free to edit this file.
3
4// !!! WARNING: This is a GENERATED Code..Please do NOT Edit !!!
5
Vernon Mauery33250242019-03-12 16:49:26 -07006#include <ipmid/types.hpp>
Tom Josephe19540e2019-02-04 14:06:58 +05307using namespace ipmi::sensor;
8
9extern const InvObjectIDMap invSensors = {
10% for key in sensorDict.iterkeys():
11 % if key:
12{"${key}",
13 {
14<%
15 objectPath = sensorDict[key]
16 sensorID = objectPath["sensorID"]
17 sensorType = objectPath["sensorType"]
18 eventReadingType = objectPath["eventReadingType"]
19 offset = objectPath["offset"]
20%>
21 ${sensorID},${sensorType},${eventReadingType},${offset}
22 }
23},
24 % endif
25% endfor
26};
27