forked from vedderb/bldc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app_pas.c
396 lines (328 loc) · 10.6 KB
/
app_pas.c
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
/*
Copyright 2016 Benjamin Vedder benjamin@vedder.se
Copyright 2020 Marcos Chaparro mchaparro@powerdesigns.ca
This file is part of the VESC firmware.
The VESC firmware is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
The VESC firmware is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "app.h"
#include "ch.h"
#include "hal.h"
#include "stm32f4xx_conf.h"
#include "mc_interface.h"
#include "timeout.h"
#include "utils_math.h"
#include "comm_can.h"
#include "hw.h"
#include <math.h>
// Settings
#define PEDAL_INPUT_TIMEOUT 0.2
#define MAX_MS_WITHOUT_CADENCE 5000
#define MIN_MS_WITHOUT_POWER 500
#define FILTER_SAMPLES 5
#define RPM_FILTER_SAMPLES 8
// Threads
static THD_FUNCTION(pas_thread, arg);
static THD_WORKING_AREA(pas_thread_wa, 512);
// Private variables
static volatile pas_config config;
static volatile float sub_scaling = 1.0;
static volatile float output_current_rel = 0.0;
static volatile float ms_without_power = 0.0;
static volatile float max_pulse_period = 0.0;
static volatile float min_pedal_period = 0.0;
static volatile float direction_conf = 0.0;
static volatile float pedal_rpm = 0;
static volatile bool primary_output = false;
static volatile bool stop_now = true;
static volatile bool is_running = false;
static volatile float torque_ratio = 0.0;
static volatile bool pas_one_magnet = false;
static volatile int8_t reverse_pedaling = 0;
static volatile uint32_t count_positive = 79;
static volatile uint32_t count_negative = 79;
/**
* Configure and initialize PAS application
*
* @param conf
* App config
*/
void app_pas_configure(pas_config *conf) {
config = *conf;
ms_without_power = 0.0;
output_current_rel = 0.0;
// a period longer than this should immediately reduce power to zero
max_pulse_period = 1.0 / ((config.pedal_rpm_start / 60.0) * config.magnets) * 1.2;
// if pedal spins at x3 the end rpm, assume its beyond limits
min_pedal_period = 1.0 / ((config.pedal_rpm_end * 3.0 / 60.0));
(config.invert_pedal_direction) ? (direction_conf = -1.0) : (direction_conf = 1.0);
}
/**
* Start PAS thread
*
* @param is_primary_output
* True when PAS app takes direct control of the current target,
* false when PAS app shares control with the ADC app for current command
*/
void app_pas_start(bool is_primary_output) {
stop_now = false;
chThdCreateStatic(pas_thread_wa, sizeof(pas_thread_wa), NORMALPRIO, pas_thread, NULL);
primary_output = is_primary_output;
}
bool app_pas_is_running(void) {
return is_running;
}
void app_pas_stop(void) {
stop_now = true;
while (is_running) {
chThdSleepMilliseconds(1);
}
if (primary_output == true) {
mc_interface_set_current_rel(0.0);
}
else {
output_current_rel = 0.0;
}
}
void app_pas_set_current_sub_scaling(float current_sub_scaling) {
sub_scaling = current_sub_scaling;
}
float app_pas_get_current_target_rel(void) {
return output_current_rel;
}
float app_pas_get_pedal_rpm(void) {
return pedal_rpm;
}
bool app_pas_get_reverse_pedaling(void) {
if (reverse_pedaling > 4) {
return true;
} else { return false; }
}
void app_pas_set_one_magnet(bool use_one_magnet) {
pas_one_magnet = use_one_magnet;
}
void pas_event_handler(void) {
#ifdef HW_PAS1_PORT
const int8_t QEM[] = {0,-1,1,2,1,0,2,-1,-1,2,0,1,2,1,-1,0}; // Quadrature Encoder Matrix
int8_t direction_qem;
uint8_t new_state;
static uint8_t old_state = 0;
static float old_timestamp = 0;
static float inactivity_time = 0;
static float period_filtered = 0;
static int32_t correct_direction_counter = 0;
static uint8_t count = 0;
if(pas_one_magnet){
uint8_t pas_level = palReadPad(GPIOA, 13);
new_state = pas_level;
if (new_state != old_state) {
count++;}
old_state = new_state;
if (config.invert_pedal_direction) {
if (new_state) {
count_negative++;
} else {
count_positive++;}
} else {
if (new_state) {
count_positive++;
} else {
count_negative++;}
}
if ((count > 1) & ((((count_positive - count_negative) / count_positive) * 100) > 42)) {
reverse_pedaling = 0;
correct_direction_counter++;
} else {
correct_direction_counter = 0;}
if ((count > 1) & (correct_direction_counter == 0) & (reverse_pedaling < 20)) {
reverse_pedaling++;
}
if ((count > 1) & (reverse_pedaling > 4)) {
pedal_rpm = 0.0;
}
const float timestamp = (float)chVTGetSystemTimeX() / (float)CH_CFG_ST_FREQUENCY;
if (count > 1) {
float period = (timestamp - old_timestamp) * (float)config.magnets;
old_timestamp = timestamp;
UTILS_LP_FAST(period_filtered, period, 1.0);
if(period_filtered < min_pedal_period) { //can't be that short, abort
return;
}
if (correct_direction_counter > 0) {
reverse_pedaling = 0;
if (pedal_rpm < 3) {
pedal_rpm = 4;
} else if (pedal_rpm == 5) { // pull the time to adjust the counters
pedal_rpm = 5;
} else if (pedal_rpm == 5) {
pedal_rpm = 30.0 / period_filtered; //safe start
} else {
pedal_rpm = 60.0 / period_filtered;}
}
inactivity_time = 0.0;
count = 0;
}
else {
inactivity_time += 1.0 / (float)config.update_rate_hz;
//if no pedal activity, set RPM as zero
if(inactivity_time > (max_pulse_period / 1.7)) {
pedal_rpm = 0.0;
count_positive = 79;
count_negative = 79;
reverse_pedaling = 0;
}
}
} else {
uint8_t PAS1_level = palReadPad(GPIOA, 13);
uint8_t PAS2_level = palReadPad(GPIOA, 14);
new_state = PAS2_level * 2 + PAS1_level;
direction_qem = (float) QEM[old_state * 4 + new_state];
old_state = new_state;
// Require several quadrature events in the right direction to prevent vibrations from
// engging PAS
int8_t direction = (direction_conf * direction_qem);
switch(direction) {
case 1: correct_direction_counter++; break;
case -1:correct_direction_counter = 0; break;
}
const float timestamp = (float)chVTGetSystemTimeX() / (float)CH_CFG_ST_FREQUENCY;
// sensors are poorly placed, so use only one rising edge as reference
if( (new_state == 3) && (correct_direction_counter >= 4) ) {
float period = (timestamp - old_timestamp) * (float)config.magnets;
old_timestamp = timestamp;
UTILS_LP_FAST(period_filtered, period, 1.0);
if(period_filtered < min_pedal_period) { //can't be that short, abort
return;
}
pedal_rpm = 60.0 / period_filtered;
pedal_rpm *= (direction_conf * (float)direction_qem);
inactivity_time = 0.0;
}
else {
inactivity_time += 1.0 / (float)config.update_rate_hz;
//if no pedal activity, set RPM as zero
if(inactivity_time > max_pulse_period) {
pedal_rpm = 0.0;
}
}
}
#endif
}
static THD_FUNCTION(pas_thread, arg) {
(void)arg;
float output = 0;
chRegSetThreadName("APP_PAS");
#ifdef HW_PAS1_PORT
palSetPadMode(GPIOA, 13, PAL_MODE_INPUT_PULLUP);
if(pas_one_magnet == 0){
palSetPadMode(GPIOA, 14, PAL_MODE_INPUT_PULLUP);
}
#endif
is_running = true;
for(;;) {
// Sleep for a time according to the specified rate
systime_t sleep_time = CH_CFG_ST_FREQUENCY / config.update_rate_hz;
// At least one tick should be slept to not block the other threads
if (sleep_time == 0) {
sleep_time = 1;
}
chThdSleep(sleep_time);
if (stop_now) {
is_running = false;
return;
}
pas_event_handler(); // this could happen inside an ISR instead of being polled
// For safe start when fault codes occur
if (mc_interface_get_fault() != FAULT_CODE_NONE) {
ms_without_power = 0;
}
if (app_is_output_disabled()) {
continue;
}
switch (config.ctrl_type) {
case PAS_CTRL_TYPE_NONE:
output = 0.0;
break;
case PAS_CTRL_TYPE_CADENCE:
// Map pedal rpm to assist level
// NOTE: If the limits are the same a numerical instability is approached, so in that case
// just use on/off control (which is what setting the limits to the same value essentially means).
if (config.pedal_rpm_end > (config.pedal_rpm_start + 1.0)) {
output = utils_map(pedal_rpm, config.pedal_rpm_start, config.pedal_rpm_end, 0.0, config.current_scaling * sub_scaling);
utils_truncate_number(&output, 0.0, config.current_scaling * sub_scaling);
} else {
if (pedal_rpm > config.pedal_rpm_end) {
output = config.current_scaling * sub_scaling;
} else {
output = 0.0;
}
}
break;
#ifdef HW_HAS_PAS_TORQUE_SENSOR
case PAS_CTRL_TYPE_TORQUE:
{
torque_ratio = hw_get_PAS_torque();
output = torque_ratio * config.current_scaling * sub_scaling;
utils_truncate_number(&output, 0.0, config.current_scaling * sub_scaling);
}
/* fall through */
case PAS_CTRL_TYPE_TORQUE_WITH_CADENCE_TIMEOUT:
{
// disable assistance if torque has been sensed for >5sec without any pedal movement. Prevents
// motor overtemps when the rider is just resting on the pedals
static float ms_without_cadence_or_torque = 0.0;
if(output == 0.0 || pedal_rpm > 0) {
ms_without_cadence_or_torque = 0.0;
} else {
ms_without_cadence_or_torque += (1000.0 * (float)sleep_time) / (float)CH_CFG_ST_FREQUENCY;
if(ms_without_cadence_or_torque > MAX_MS_WITHOUT_CADENCE) {
output = 0.0;
}
}
}
#endif
default:
break;
}
// Apply ramping
static systime_t last_time = 0;
static float output_ramp = 0.0;
float ramp_time = fabsf(output) > fabsf(output_ramp) ? config.ramp_time_pos : config.ramp_time_neg;
if (ramp_time > 0.01) {
const float ramp_step = (float)ST2MS(chVTTimeElapsedSinceX(last_time)) / (ramp_time * 1000.0);
utils_step_towards(&output_ramp, output, ramp_step);
utils_truncate_number(&output_ramp, 0.0, config.current_scaling * sub_scaling);
last_time = chVTGetSystemTimeX();
output = output_ramp;
}
if (output < 0.001) {
ms_without_power += (1000.0 * (float)sleep_time) / (float)CH_CFG_ST_FREQUENCY;
}
// Safe start is enabled if the output has not been zero for long enough
if (ms_without_power < MIN_MS_WITHOUT_POWER) {
static int pulses_without_power_before = 0;
if (ms_without_power == pulses_without_power_before) {
ms_without_power = 0;
}
pulses_without_power_before = ms_without_power;
output_current_rel = 0.0;
continue;
}
// Reset timeout
timeout_reset();
if (primary_output == true) {
mc_interface_set_current_rel(output);
}
else {
output_current_rel = output;
}
}
}