blob: b5fac53a37d12e838a1c00e7b42194ede2cac7d5 [file] [log] [blame]
## This file is a template. The comment below is emitted
## into the rendered file; feel free to edit this file.
// WARNING: Generated header. Do not edit!
#pragma once
#include <map>
namespace open_power
{
namespace occ
{
using instanceID = int;
using sensorID = uint8_t;
const std::map<instanceID, sensorID> Status::sensorMap = {
\
% for occ in occDict:
<%
instance = occ.get("Instance")
id = occ.get("SensorID")
%>\
\
{ ${instance}, ${id} },\
% endfor
};
} // namespace occ
} // namespace open_power