blob: f4660604f4064ea1f5d60054fb83837e35831c99 [file] [log] [blame]
Patrick Venturee6206562018-03-08 15:36:53 -08001## 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 GENERATED Code... Please do NOT edit !!!
5
6#include <map>
7#include "conf.hpp"
8
Patrick Venturec54fbd82018-10-30 19:40:05 -07009std::map<int64_t, struct ZoneConfig> zoneDetailsConfig = {
Patrick Venturee6206562018-03-08 15:36:53 -080010% for zone in ZoneDict.iterkeys():
11 % if zone:
12 <%
13 zConf = ZoneDict[zone]
Patrick Venture8e2fdb32019-02-11 09:39:59 -080014 min = zConf["minThermalRpm"]
15 percent = zConf["failsafePercent"]
Patrick Venturee6206562018-03-08 15:36:53 -080016 %>
17 {${zone},
18 {${min}, ${percent}},
19 },
20 % endif
21% endfor
22};