Name Date Size #Lines LOC

..--

ec/H--765510

READMEH A D11-Feb-2019592 129

builder.cppH A D01-Feb-20255.8 KiB169122

builder.hppH A D01-Feb-2025441 2114

buildjson.cppH A D16-Aug-20248 KiB254192

buildjson.hppH A D08-Oct-2020471 2511

controller.hppH A D08-Aug-2020513 3116

fan.hppH A D08-Aug-2020168 1510

fancontroller.cppH A D29-May-20247.4 KiB252167

fancontroller.hppH A D16-Aug-20241.4 KiB5639

pidcontroller.cppH A D07-Apr-20253.4 KiB13376

pidcontroller.hppH A D05-Nov-20232.4 KiB9170

pidloop.cppH A D07-Apr-20255 KiB15775

pidloop.hppH A D04-Oct-2022893 2810

stepwisecontroller.cppH A D07-Apr-20252.8 KiB12082

stepwisecontroller.hppH A D01-Feb-20251.4 KiB6447

thermalcontroller.cppH A D16-Aug-20245.3 KiB213152

thermalcontroller.hppH A D16-Aug-20241.8 KiB6937

tuning.cppH A D07-Nov-2020784 297

tuning.hppH A D07-Nov-2020584 257

util.cppH A D05-Nov-20232.4 KiB6743

zone.cppH A D05-Jun-202517.4 KiB687510

zone.hppH A D29-May-20249.7 KiB260201

zone_interface.hppH A D29-May-20245 KiB13244

README

1ThermalControllers and FanControllers are derived objects from a common PID
2Controller object.  The design implemented in this structure is a facsimile of
3what was published in the Chrome OS source.
4
5One has any number of ThermalControllers that run through a PID step to
6generate a setpoint RPM to reach its thermal setpoint.  The maximum output
7from the set of ThermalControllers is taken as the input to all the
8FanController PID loops.
9
10Each group of these controllers is managed within a zone.  A PIDZone object
11helps manage them by providing a sensor value cache and overall execution.
12