forked from collin80/GEVCU
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestThrottle.cpp
198 lines (161 loc) · 6.52 KB
/
TestThrottle.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/*
* TestThrottle.cpp
*
Copyright (c) 2013 Collin Kidder, Michael Neuweiler, Charles Galpin
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "TestThrottle.h"
/*
* Constructor
*/
TestThrottle::TestThrottle() : Throttle() {
prefsHandler = new PrefHandler(TESTACCEL);
commonName = "Test/Debug Accelerator";
rampingDirection = true;
rawSignal.input1 = 0;
}
/*
* Setup the device.
*/
void TestThrottle::setup() {
TickHandler::getInstance()->detach(this); // unregister from TickHandler first
Logger::info("add device: TestThrottle (id: %X, %X)", TESTACCEL, this);
loadConfiguration();
Throttle::setup(); //call base class
//Use same tick interval as a pot based pedal would have used.
TickHandler::getInstance()->attach(this, CFG_TICK_INTERVAL_POT_THROTTLE);
}
/*
* Process a timer event.
*/
void TestThrottle::handleTick() {
Throttle::handleTick(); // Call parent which controls the workflow
}
/*
* Retrieve raw input signals from the throttle hardware.
*/
RawSignalData *TestThrottle::acquireRawSignal() {
TestThrottleConfiguration *config = (TestThrottleConfiguration *) getConfiguration();
if (rampingDirection) rawSignal.input1 += 4;
else rawSignal.input1 -= 4;
if (rawSignal.input1 <= config->minimumLevel1) {
rawSignal.input1 = config->minimumLevel1;
rampingDirection = true;
}
if (rawSignal.input1 >= config->maximumLevel1) {
rawSignal.input1 = config->maximumLevel1;
rampingDirection = false;
}
rawSignal.input2 = 0;
return &rawSignal;
}
/*
* Perform sanity check on the ADC input values. The values are normalized (without constraining them)
* and the checks are performed on a 0-1000 scale with a percentage tolerance
*/
bool TestThrottle::validateSignal(RawSignalData *rawSignal) {
TestThrottleConfiguration *config = (TestThrottleConfiguration *) getConfiguration();
int32_t calcThrottle1;
calcThrottle1 = normalizeInput(rawSignal->input1, config->minimumLevel1, config->maximumLevel1);
if (calcThrottle1 > (1000 + CFG_THROTTLE_TOLERANCE))
{
if (status == OK)
Logger::error(TESTACCEL, "ERR_HIGH_T1: throttle 1 value out of range: %l", calcThrottle1);
status = ERR_HIGH_T1;
faultHandler.raiseFault(TESTACCEL, FAULT_THROTTLE_HIGH_A, true);
return false;
}
else
{
faultHandler.cancelOngoingFault(TESTACCEL, FAULT_THROTTLE_HIGH_A);
}
if (calcThrottle1 < (0 - CFG_THROTTLE_TOLERANCE)) {
if (status == OK)
Logger::error(TESTACCEL, "ERR_LOW_T1: throttle 1 value out of range: %l ", calcThrottle1);
status = ERR_LOW_T1;
faultHandler.raiseFault(TESTACCEL, FAULT_THROTTLE_LOW_A, true);
return false;
}
else
{
faultHandler.cancelOngoingFault(TESTACCEL, FAULT_THROTTLE_LOW_A);
}
// all checks passed -> throttle is ok
if (status != OK)
Logger::info(TESTACCEL, (char *)Constants::normalOperation);
status = OK;
return true;
}
/*
* Convert the raw ADC values to a range from 0 to 1000 (per mille) according
* to the specified range and the type of potentiometer.
*/
uint16_t TestThrottle::calculatePedalPosition(RawSignalData *rawSignal) {
TestThrottleConfiguration *config = (TestThrottleConfiguration *) getConfiguration();
uint16_t calcThrottle1;
calcThrottle1 = normalizeInput(rawSignal->input1, config->minimumLevel1, config->maximumLevel1);
return calcThrottle1;
}
/*
* Return the device ID
*/
DeviceId TestThrottle::getId() {
return (TESTACCEL);
}
/*
* Load the device configuration.
* If possible values are read from EEPROM. If not, reasonable default values
* are chosen and the configuration is overwritten in the EEPROM.
*/
void TestThrottle::loadConfiguration() {
TestThrottleConfiguration *config = (TestThrottleConfiguration *) getConfiguration();
if (!config) { // as lowest sub-class make sure we have a config object
config = new TestThrottleConfiguration();
setConfiguration(config);
}
Throttle::loadConfiguration(); // call parent
#ifdef USE_HARD_CODED
if (false) {
#else
if (prefsHandler->checksumValid()) { //checksum is good, read in the values stored in EEPROM
#endif
Logger::debug(TESTACCEL, (char *)Constants::validChecksum);
prefsHandler->read(EETH_MIN_ONE, &config->minimumLevel1);
prefsHandler->read(EETH_MAX_ONE, &config->maximumLevel1);
// ** This is potentially a condition that is only met if you don't have the EEPROM hardware **
// If preferences have never been set before, numThrottlePots and throttleSubType
// will both be zero. We really should refuse to operate in this condition and force
// calibration, but for now at least allow calibration to work by setting numThrottlePots = 2
} else { //checksum invalid. Reinitialize values and store to EEPROM
Logger::warn(TESTACCEL, (char *)Constants::invalidChecksum);
config->minimumLevel1 = Throttle1MinValue;
config->maximumLevel1 = Throttle1MaxValue;
saveConfiguration();
}
Logger::debug(TESTACCEL, "T1 MIN: %l MAX: %l", config->minimumLevel1, config->maximumLevel1);
}
/*
* Store the current configuration to EEPROM
*/
void TestThrottle::saveConfiguration() {
TestThrottleConfiguration *config = (TestThrottleConfiguration *) getConfiguration();
Throttle::saveConfiguration(); // call parent
prefsHandler->write(EETH_MIN_ONE, config->minimumLevel1);
prefsHandler->write(EETH_MAX_ONE, config->maximumLevel1);
prefsHandler->saveChecksum();
}