blob: 5c4f4fa155b8c3a35440215de0def66471027098 [file] [log] [blame]
## This file is a template. The comment below is emitted
## into the rendered file; feel free to edit this file.
// !!! WARNING: This is GENERATED Code... Please do NOT edit !!!
#include <map>
#include "conf.hpp"
std::map<int64_t, struct ZoneConfig> zoneDetailsConfig = {
% for zone in ZoneDict.iterkeys():
% if zone:
<%
zConf = ZoneDict[zone]
min = zConf["minthermalrpm"]
percent = zConf["failsafepercent"]
%>
{${zone},
{${min}, ${percent}},
},
% endif
% endfor
};