blob: 259861371f376584fdb7b72913a24c92414a8a39 [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
};