blob: eda0ce7645dae91b81a81cd47dc1471585ef07d1 [file] [log] [blame]
Harvey Wu262b9222023-01-04 10:35:41 +08001description: >
2 Implement to show the states of the first PID control loop(thermal/power).
3
4properties:
5 - name: Leader
6 type: string
7 flags:
8 - readonly
9 description: >
10 This means the name of the thermal sensor that is the highest temp in
11 input sensor list.
12
13 - name: ClassType
14 type: string
15 flags:
16 - readonly
17 description: >
18 The class of this PID loop. It can be "Temperature", "Margin", "Power"
19 or "PowerSum".
20
21 - name: Setpoint
22 type: double
23 flags:
24 - readonly
25 description: >
26 This pid config's setpoint.
27
28 - name: Input
29 type: double
30 flags:
31 - readonly
32 description: >
33 The "Leader" sensor reading.
34
35 - name: Output
36 type: double
37 flags:
38 - readonly
39 description: >
40 This property is the thermal PID loop result. This data doesn't have
41 static unit, it can be RPM or PWM depending on PID parameter settings.