xref: /openbmc/phosphor-pid-control/pid/util.cpp (revision 0c8223b5)
1 /**
2  * Copyright 2017 Google Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #include "util.hpp"
18 
19 #include "ec/pid.hpp"
20 
21 #include <cstring>
22 #include <iostream>
23 
24 void initializePIDStruct(ec::pid_info_t* info, const ec::pidinfo& initial)
25 {
26     std::memset(info, 0x00, sizeof(ec::pid_info_t));
27 
28     info->ts = initial.ts;
29     info->proportionalCoeff = initial.proportionalCoeff;
30     info->integralCoeff = initial.integralCoeff;
31     info->feedFwdOffset = initial.feedFwdOffset;
32     info->feedFwdGain = initial.feedFwdGain;
33     info->integralLimit.min = initial.integralLimit.min;
34     info->integralLimit.max = initial.integralLimit.max;
35     info->outLim.min = initial.outLim.min;
36     info->outLim.max = initial.outLim.max;
37     info->slewNeg = initial.slewNeg;
38     info->slewPos = initial.slewPos;
39     info->negativeHysteresis = initial.negativeHysteresis;
40     info->positiveHysteresis = initial.positiveHysteresis;
41 }
42 
43 void dumpPIDStruct(ec::pid_info_t* info)
44 {
45     std::cerr << " ts: " << info->ts
46               << " proportionalCoeff: " << info->proportionalCoeff
47               << " integralCoeff: " << info->integralCoeff
48               << " feedFwdOffset: " << info->feedFwdOffset
49               << " feedFwdGain: " << info->feedFwdGain
50               << " integralLimit.min: " << info->integralLimit.min
51               << " integralLimit.max: " << info->integralLimit.max
52               << " outLim.min: " << info->outLim.min
53               << " outLim.max: " << info->outLim.max
54               << " slewNeg: " << info->slewNeg << " slewPos: " << info->slewPos
55               << " last_output: " << info->lastOutput
56               << " integral: " << info->integral << std::endl;
57 
58     return;
59 }
60