blob: 57b9908aee25f812a71b4bac67ca1b931c7d683a [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 zone> ZoneDetailsConfig = {
% for zone in ZoneDict.iterkeys():
% if zone:
<%
zConf = ZoneDict[zone]
min = zConf["minthermalrpm"]
percent = zConf["failsafepercent"]
%>
{${zone},
{${min}, ${percent}},
},
% endif
% endfor
};