diff options
| author | James Feist <james.feist@linux.intel.com> | 2019-02-25 13:28:18 -0800 |
|---|---|---|
| committer | Patrick Venture <venture@google.com> | 2019-02-26 18:46:56 +0000 |
| commit | 3484bedaf611a106eeaf418b6cede2c2e42095c8 (patch) | |
| tree | b852399ccab0119f7ccccc3e477635d48da01a48 /examples | |
| parent | 75eb769d351434547899186f73ff70ae00d7934a (diff) | |
| download | phosphor-pid-control-3484bedaf611a106eeaf418b6cede2c2e42095c8.tar.gz phosphor-pid-control-3484bedaf611a106eeaf418b6cede2c2e42095c8.zip | |
s/minThermalRPM/minThermalOutput
The minThermalRPM is only an RPM by the fact that
that is the units of the PID. As the PID units can
be anything, change this to minThermalOutput to allow
for different units (i.e. percent).
Change-Id: Ic53fef1159ade5a413e5d519d407947f3023d8e3
Signed-off-by: James Feist <james.feist@linux.intel.com>
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/README | 2 | ||||
| -rw-r--r-- | examples/fan-info.json | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/README b/examples/README index df76978..dcbd645 100644 --- a/examples/README +++ b/examples/README @@ -55,7 +55,7 @@ The PID configuration is a list of PIDs per zone. "zones" : [ { "id": 1, /* zone id. */ - "minThermalRpm": 3000.0, /* The minimum thermal RPM value. (double) */ + "minThermalOutput": 3000.0, /* The minimum thermal RPM value. (double) */ "failsafePercent": 75.0, /* The percent to use when the zone is in fail-safe mode. (double) */ "pids": [ { diff --git a/examples/fan-info.json b/examples/fan-info.json index e0b87ee..f1676cb 100644 --- a/examples/fan-info.json +++ b/examples/fan-info.json @@ -62,7 +62,7 @@ "zones" : [ { "id": 1, - "minThermalRpm": 3000.0, + "minThermalOutput": 3000.0, "failsafePercent": 75.0, "pids": [ { |

