-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathPotThrottle.cpp
285 lines (244 loc) · 10.1 KB
/
PotThrottle.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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
/*
* PotThrottle.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 "PotThrottle.h"
/*
* Constructor
*/
PotThrottle::PotThrottle() : Throttle() {
prefsHandler = new PrefHandler(POTACCELPEDAL);
commonName = "Potentiometer (analog) accelerator";
}
/*
* Setup the device.
*/
void PotThrottle::setup() {
TickHandler::getInstance()->detach(this); // unregister from TickHandler first
Logger::info("add device: PotThrottle (id: %X, %X)", POTACCELPEDAL, this);
loadConfiguration();
Throttle::setup(); //call base class
//set digital ports to inputs and pull them up all inputs currently active low
//pinMode(THROTTLE_INPUT_BRAKELIGHT, INPUT_PULLUP); //Brake light switch
TickHandler::getInstance()->attach(this, CFG_TICK_INTERVAL_POT_THROTTLE);
}
/*
* Process a timer event.
*/
void PotThrottle::handleTick() {
Throttle::handleTick(); // Call parent which controls the workflow
}
/*
* Retrieve raw input signals from the throttle hardware.
*/
RawSignalData *PotThrottle::acquireRawSignal() {
PotThrottleConfiguration *config = (PotThrottleConfiguration *) getConfiguration();
sys_io_adc_poll();
rawSignal.input1 = getAnalog(config->AdcPin1);
rawSignal.input2 = getAnalog(config->AdcPin2);
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 PotThrottle::validateSignal(RawSignalData *rawSignal) {
PotThrottleConfiguration *config = (PotThrottleConfiguration *) getConfiguration();
int32_t calcThrottle1, calcThrottle2;
calcThrottle1 = normalizeInput(rawSignal->input1, config->minimumLevel1, config->maximumLevel1);
if (config->numberPotMeters == 1 && config->throttleSubType == 2) { // inverted
calcThrottle1 = 1000 - calcThrottle1;
}
if (calcThrottle1 > (1000 + CFG_THROTTLE_TOLERANCE))
{
if (status == OK)
Logger::error(POTACCELPEDAL, "ERR_HIGH_T1: throttle 1 value out of range: %l", calcThrottle1);
status = ERR_HIGH_T1;
faultHandler.raiseFault(POTACCELPEDAL, FAULT_THROTTLE_HIGH_A, true);
return false;
}
else
{
faultHandler.cancelOngoingFault(POTACCELPEDAL, FAULT_THROTTLE_HIGH_A);
}
if (calcThrottle1 < (0 - CFG_THROTTLE_TOLERANCE)) {
if (status == OK)
Logger::error(POTACCELPEDAL, "ERR_LOW_T1: throttle 1 value out of range: %l ", calcThrottle1);
status = ERR_LOW_T1;
faultHandler.raiseFault(POTACCELPEDAL, FAULT_THROTTLE_LOW_A, true);
return false;
}
else
{
faultHandler.cancelOngoingFault(POTACCELPEDAL, FAULT_THROTTLE_LOW_A);
}
if (config->numberPotMeters > 1) {
calcThrottle2 = normalizeInput(rawSignal->input2, config->minimumLevel2, config->maximumLevel2);
if (calcThrottle2 > (1000 + CFG_THROTTLE_TOLERANCE)) {
if (status == OK)
Logger::error(POTACCELPEDAL, "ERR_HIGH_T2: throttle 2 value out of range: %l", calcThrottle2);
status = ERR_HIGH_T2;
faultHandler.raiseFault(POTACCELPEDAL, FAULT_THROTTLE_HIGH_B, true);
return false;
}
else
{
faultHandler.cancelOngoingFault(POTACCELPEDAL, FAULT_THROTTLE_HIGH_B);
}
if (calcThrottle2 < (0 - CFG_THROTTLE_TOLERANCE)) {
if (status == OK)
Logger::error(POTACCELPEDAL, "ERR_LOW_T2: throttle 2 value out of range: %l", calcThrottle2);
status = ERR_LOW_T2;
faultHandler.cancelOngoingFault(POTACCELPEDAL, FAULT_THROTTLE_LOW_B);
return false;
}
else
{
faultHandler.cancelOngoingFault(POTACCELPEDAL, FAULT_THROTTLE_LOW_B);
}
if (config->throttleSubType == 2) {
// inverted throttle 2 means the sum of the two throttles should be 1000
if ( abs(1000 - calcThrottle1 - calcThrottle2) > ThrottleMaxErrValue) {
if (status == OK)
Logger::error(POTACCELPEDAL, "Sum of throttle 1 (%l) and throttle 2 (%l) exceeds max variance from 1000 (%l)",
calcThrottle1, calcThrottle2, ThrottleMaxErrValue);
status = ERR_MISMATCH;
faultHandler.raiseFault(POTACCELPEDAL, FAULT_THROTTLE_MISMATCH_AB, true);
return false;
}
else
{
faultHandler.cancelOngoingFault(POTACCELPEDAL, FAULT_THROTTLE_MISMATCH_AB);
}
} else {
if ((calcThrottle1 - ThrottleMaxErrValue) > calcThrottle2) { //then throttle1 is too large compared to 2
if (status == OK)
Logger::error(POTACCELPEDAL, "throttle 1 too high (%l) compared to 2 (%l)", calcThrottle1, calcThrottle2);
status = ERR_MISMATCH;
faultHandler.raiseFault(POTACCELPEDAL, FAULT_THROTTLE_MISMATCH_AB, true);
return false;
}
else if ((calcThrottle2 - ThrottleMaxErrValue) > calcThrottle1) { //then throttle2 is too large compared to 1
if (status == OK)
Logger::error(POTACCELPEDAL, "throttle 2 too high (%l) compared to 1 (%l)", calcThrottle2, calcThrottle1);
status = ERR_MISMATCH;
faultHandler.raiseFault(POTACCELPEDAL, FAULT_THROTTLE_MISMATCH_AB, true);
return false;
}
else
{
faultHandler.cancelOngoingFault(POTACCELPEDAL, FAULT_THROTTLE_MISMATCH_AB);
}
}
}
// all checks passed -> throttle is ok
if (status != OK)
Logger::info(POTACCELPEDAL, (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 PotThrottle::calculatePedalPosition(RawSignalData *rawSignal) {
PotThrottleConfiguration *config = (PotThrottleConfiguration *) getConfiguration();
uint16_t calcThrottle1, calcThrottle2;
calcThrottle1 = normalizeInput(rawSignal->input1, config->minimumLevel1, config->maximumLevel1);
if (config->numberPotMeters > 1) {
calcThrottle2 = normalizeInput(rawSignal->input2, config->minimumLevel2, config->maximumLevel2);
if (config->throttleSubType == 2) // inverted
calcThrottle2 = 1000 - calcThrottle2;
calcThrottle1 = (calcThrottle1 + calcThrottle2) / 2; // now the average of the two
}
return calcThrottle1;
}
/*
* Return the device ID
*/
DeviceId PotThrottle::getId() {
return (POTACCELPEDAL);
}
/*
* 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 PotThrottle::loadConfiguration() {
PotThrottleConfiguration *config = (PotThrottleConfiguration *) getConfiguration();
if (!config) { // as lowest sub-class make sure we have a config object
config = new PotThrottleConfiguration();
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(POTACCELPEDAL, (char *)Constants::validChecksum);
prefsHandler->read(EETH_MIN_ONE, &config->minimumLevel1);
prefsHandler->read(EETH_MAX_ONE, &config->maximumLevel1);
prefsHandler->read(EETH_MIN_TWO, &config->minimumLevel2);
prefsHandler->read(EETH_MAX_TWO, &config->maximumLevel2);
prefsHandler->read(EETH_NUM_THROTTLES, &config->numberPotMeters);
prefsHandler->read(EETH_THROTTLE_TYPE, &config->throttleSubType);
prefsHandler->read(EETH_ADC_1, &config->AdcPin1);
prefsHandler->read(EETH_ADC_2, &config->AdcPin2);
// ** 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
if (config->numberPotMeters == 0 && config->throttleSubType == 0) {
Logger::debug(POTACCELPEDAL, "THROTTLE APPEARS TO NEED CALIBRATION/DETECTION - choose 'z' on the serial console menu");
config->numberPotMeters = 2;
}
} else { //checksum invalid. Reinitialize values and store to EEPROM
Logger::warn(POTACCELPEDAL, (char *)Constants::invalidChecksum);
config->minimumLevel1 = Throttle1MinValue;
config->maximumLevel1 = Throttle1MaxValue;
config->minimumLevel2 = Throttle2MinValue;
config->maximumLevel2 = Throttle2MaxValue;
config->numberPotMeters = ThrottleNumPots;
config->throttleSubType = ThrottleSubtype;
config->AdcPin1 = ThrottleADC1;
config->AdcPin2 = ThrottleADC2;
saveConfiguration();
}
Logger::debug(POTACCELPEDAL, "# of pots: %d subtype: %d", config->numberPotMeters, config->throttleSubType);
Logger::debug(POTACCELPEDAL, "T1 MIN: %l MAX: %l T2 MIN: %l MAX: %l", config->minimumLevel1, config->maximumLevel1, config->minimumLevel2,
config->maximumLevel2);
}
/*
* Store the current configuration to EEPROM
*/
void PotThrottle::saveConfiguration() {
PotThrottleConfiguration *config = (PotThrottleConfiguration *) getConfiguration();
Throttle::saveConfiguration(); // call parent
prefsHandler->write(EETH_MIN_ONE, config->minimumLevel1);
prefsHandler->write(EETH_MAX_ONE, config->maximumLevel1);
prefsHandler->write(EETH_MIN_TWO, config->minimumLevel2);
prefsHandler->write(EETH_MAX_TWO, config->maximumLevel2);
prefsHandler->write(EETH_NUM_THROTTLES, config->numberPotMeters);
prefsHandler->write(EETH_THROTTLE_TYPE, config->throttleSubType);
prefsHandler->write(EETH_ADC_1, config->AdcPin1);
prefsHandler->write(EETH_ADC_2, config->AdcPin2);
prefsHandler->saveChecksum();
}