blob: 5c6e5d4782f27d6e7988c3a447390fc45f4ed97a [file] [log] [blame]
Patrick Ventured8012182018-03-08 08:21:38 -08001/**
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
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070017#include "ec/pid.hpp"
18
Patrick Ventured8012182018-03-08 08:21:38 -080019#include <cstring>
20#include <iostream>
21
Patrick Venture7af157b2018-10-30 11:24:40 -070022void initializePIDStruct(ec::pid_info_t* info, const ec::pidinfo& initial)
Patrick Ventured8012182018-03-08 08:21:38 -080023{
24 std::memset(info, 0x00, sizeof(ec::pid_info_t));
25
Patrick Venturef77d5a52018-10-23 09:32:52 -070026 info->ts = initial.ts;
Patrick Venture7442c372019-02-11 10:21:05 -080027 info->proportionalCoeff = initial.proportionalCoeff;
28 info->integralCoeff = initial.integralCoeff;
29 info->feedFwdOffset = initial.feedFwdOffset;
30 info->feedFwdGain = initial.feedFwdGain;
31 info->integralLimit.min = initial.integralLimit.min;
32 info->integralLimit.max = initial.integralLimit.max;
33 info->outLim.min = initial.outLim.min;
34 info->outLim.max = initial.outLim.max;
35 info->slewNeg = initial.slewNeg;
36 info->slewPos = initial.slewPos;
James Feist572c43d2019-01-31 15:52:22 -080037 info->negativeHysteresis = initial.negativeHysteresis;
38 info->positiveHysteresis = initial.positiveHysteresis;
Patrick Ventured8012182018-03-08 08:21:38 -080039}
40
Patrick Venture7af157b2018-10-30 11:24:40 -070041void dumpPIDStruct(ec::pid_info_t* info)
Patrick Ventured8012182018-03-08 08:21:38 -080042{
Patrick Venture7442c372019-02-11 10:21:05 -080043 std::cerr << " ts: " << info->ts
44 << " proportionalCoeff: " << info->proportionalCoeff
45 << " integralCoeff: " << info->integralCoeff
46 << " feedFwdOffset: " << info->feedFwdOffset
47 << " feedFwdGain: " << info->feedFwdGain
48 << " integralLimit.min: " << info->integralLimit.min
49 << " integralLimit.max: " << info->integralLimit.max
50 << " outLim.min: " << info->outLim.min
51 << " outLim.max: " << info->outLim.max
52 << " slewNeg: " << info->slewNeg << " slewPos: " << info->slewPos
Patrick Venture4b0df322019-02-11 09:04:57 -080053 << " last_output: " << info->lastOutput
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070054 << " integral: " << info->integral << std::endl;
Patrick Ventured8012182018-03-08 08:21:38 -080055
56 return;
57}