Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 3 | #include "pid/ec/pid.hpp" |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 4 | #include "pid/ec/stepwise.hpp" |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 5 | |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 6 | #include <map> |
| 7 | #include <string> |
| 8 | #include <vector> |
| 9 | |
James Feist | 75eb769 | 2019-02-25 12:50:02 -0800 | [diff] [blame] | 10 | namespace conf |
| 11 | { |
James Feist | f81f288 | 2019-02-26 11:26:36 -0800 | [diff] [blame] | 12 | |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 13 | /* |
| 14 | * General sensor structure used for configuration. |
| 15 | */ |
Patrick Venture | f325231 | 2018-10-30 08:42:53 -0700 | [diff] [blame] | 16 | struct SensorConfig |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 17 | { |
Patrick Venture | 69c5106 | 2019-02-11 09:46:03 -0800 | [diff] [blame] | 18 | /* Used for listen if readPath is passive. */ |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 19 | std::string type; |
| 20 | /* Can be a sensor path or a dbus path. */ |
Patrick Venture | 69c5106 | 2019-02-11 09:46:03 -0800 | [diff] [blame] | 21 | std::string readPath; |
| 22 | std::string writePath; |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 23 | /* min/max values for writing a percentage or error checking. */ |
| 24 | int64_t min; |
| 25 | int64_t max; |
| 26 | int64_t timeout; |
| 27 | }; |
| 28 | |
| 29 | /* |
| 30 | * Structure for holding the configuration of a PID. |
| 31 | */ |
Patrick Venture | f325231 | 2018-10-30 08:42:53 -0700 | [diff] [blame] | 32 | struct ControllerInfo |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 33 | { |
| 34 | std::string type; // fan or margin or temp? |
| 35 | std::vector<std::string> inputs; // one or more sensors. |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 36 | double setpoint; // initial setpoint for thermal. |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 37 | union |
| 38 | { |
| 39 | ec::pidinfo pidInfo; // pid details |
| 40 | ec::StepwiseInfo stepwiseInfo; |
| 41 | }; |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 42 | }; |
| 43 | |
| 44 | /* |
| 45 | * General zone structure used for configuration. A zone is a list of PIDs |
| 46 | * and a set of configuration settings. This structure gets filled out with |
| 47 | * the zone configuration settings and not the PID details. |
| 48 | */ |
Patrick Venture | f325231 | 2018-10-30 08:42:53 -0700 | [diff] [blame] | 49 | struct ZoneConfig |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 50 | { |
Patrick Venture | f7a2dd5 | 2019-07-16 14:31:13 -0700 | [diff] [blame] | 51 | /* The minimum set-point value we would ever want (typically in RPM) */ |
James Feist | 3484bed | 2019-02-25 13:28:18 -0800 | [diff] [blame] | 52 | double minThermalOutput; |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 53 | |
| 54 | /* If the sensors are in fail-safe mode, this is the percentage to use. */ |
Patrick Venture | 8e2fdb3 | 2019-02-11 09:39:59 -0800 | [diff] [blame] | 55 | double failsafePercent; |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 56 | }; |
| 57 | |
Patrick Venture | f325231 | 2018-10-30 08:42:53 -0700 | [diff] [blame] | 58 | using PIDConf = std::map<std::string, struct ControllerInfo>; |
James Feist | f81f288 | 2019-02-26 11:26:36 -0800 | [diff] [blame] | 59 | |
| 60 | } // namespace conf |