-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
274 lines (229 loc) · 8.01 KB
/
main.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
//
// main.c
// Copyright (c) 2017 João Baptista de Paula e Silva
// Este arquivo está sob a licença MIT
//
//
// Este arquivo tem a função main, que vai ser a base para
// todas as outras funções rodarem, além de ser a base da
// configuração de inicialização do microcontrolador.
// A descrição do que cada pino do ATMega328p faz no programa
// pode ser encontrada em wiring.txt
//
// Aqui há um uso pesado de aritmética fixed-point. Por isso, há
// anotações em inteiros que são interpretados dessa forma
//
#include "default.h"
#define BLINK_FRAMES 8
#define HANDSHAKE_RX_BYTE 0x55
#define SGN(x,v) ((x)>0 ? (v) : (x)<0 ? -(v) : 0)
#include <stdlib.h>
// Isso aqui tem que ser executado o mais rápido possível (antes do main)
void pre_main() __attribute__((naked,used,section(".init3")));
void pre_main() { wdt_off(); }
// Variáveis para o PID: todas elas são fixed-point 16.16
int32_t cur_out_l = 0, err_int_l = 0, last_err_l = 0, target_l = 0;
int32_t cur_out_r = 0, err_int_r = 0, last_err_r = 0, target_r = 0;
// 16.16 16.16 4.12 4.12 4.12 16.16 16.16 16.16
void pid_control(int32_t in, int32_t target, int16_t kp, int16_t ki, int16_t kd, int32_t *cur_out, int32_t *err_int, int32_t *last_err);
void esc_control();
void main() __attribute__((noreturn));
void main()
{
// Configuração das direções das portas:
DDRB = B00100110; // grupo B: motor direito, encoder direito
DDRC = B00000000; // grupo C: LED de apoio, receptor
DDRD = B01110000; // grupo D: motor esquerdo, encoder esquerdo, RX/TX
// Configuração do estado inicial e resistores de pullup
PORTB = B00000000; // grupo B: pullup na DIP switch
PORTC = B00000000; // grupo C: pullup nos pinos desconectados
PORTD = B00000000; // grupo D: pullup na DIP switch
// Configuração dos interrupts de mudança de pino
PCMSK1 = B00001111; // grupo C: receptor
PCMSK2 = B10000000; // grupo B: canal especial do ESC
PCICR = B110; // habilita os três interrupts
// Configuração dos interrupts externos para a leitura dos encoders
EICRA = B1111; // interrupt na subida lógica de cada um deles
EIMSK = B11; // habilita os dois interrupts externos
// Configuração dos timers: Timer0 usado no motor esquerdo, Timer1 usado no motor direito
TCCR0A = B10100011; // Timer0: as duas saídas diretas
TCCR0B = B00000011; // Timer0: prescaler de 64 ciclos, fast PWM
TIMSK0 = B00000001; // Timer0: habilitar interrupt no overflow, usado para contar ciclos
OCR0A = 0;
OCR0B = 0; // Timer0: PWM de 0 nas duas saídas
TCCR1A = B11110001; // Timer1: as duas saídas invertidas (LOW e depois HIGH)
TCCR1B = B00001011; // Timer1: prescaler de 64 ciclos, fast PWM;
TIMSK1 = B00000000; // Timer1: desabilitar todos os interrupts
OCR1A = 0;
OCR1B = 0; // Timer1: PWM de 0 nas duas saídas
TCCR2A = B00000000; // Timer2: overflow normal
TCCR2B = B00000100; // Timer2: prescaler de 64 ciclos
TIMSK2 = B00000000; // Timer2: habilitar overflow
OCR2A = 0;
OCR2B = 0;
// Desativar alguns periféricos para redução de consumo de energia
PRR = B10000101;
// Zera todos os dados usados pelos módulos de input, output, serial e config
serial_init();
config_init();
input_init();
flags = 0;
// Configuração do timer de watchdog, para resetar o microprocessador caso haja alguma falha
wdt_enable(WDTO_60MS);
uint32_t counter = 300000;
while (counter--)
{
wdt_reset();
// Detecta o handshake para o modo de configuração
uint8_t rx;
while (RX_VAR(rx))
if (rx == HANDSHAKE_RX_BYTE)
{
DDRB = 0;
DDRD = 0;
config_status();
}
}
// Habilita interrupts de novo
sei();
// Loop infinito
for(;;)
{
// Loop principal
if (flags & EXECUTE_ENC)
{
flags &= (uint8_t)~EXECUTE_ENC;
static uint8_t frame_counter = 0;
led_set(frame_counter < BLINK_FRAMES);
if (++frame_counter == 2*BLINK_FRAMES) frame_counter = 0;
if (recv_online())
{
input_read_enc();
int32_t enc_l = (int32_t)SGN(cur_out_l, enc_left()) << 16;
int32_t enc_r = (int32_t)SGN(cur_out_r, enc_right()) << 16;
// regula o "peso" do PID
int32_t knob_blend = recv_get_ch(3) + 256;
if (knob_blend < 0) knob_blend = 0;
if (knob_blend > 512) knob_blend = 512;
if (target_l == 0) cur_out_l = err_int_l = last_err_l = 0;
else
{
// PID do motor esquerdo
pid_control(enc_l, target_l,
get_config()->left_kp, get_config()->left_ki, get_config()->left_kd,
&cur_out_l, &err_int_l, &last_err_l);
cur_out_l = target_l + knob_blend * ((cur_out_l - target_l) / 16) / 32;
CLAMP(cur_out_l, 1024L << 16);
}
if (target_r == 0) cur_out_r = err_int_r = last_err_r = 0;
else
{
// PID do motor direito
pid_control(enc_r, target_r,
get_config()->right_kp, get_config()->right_ki, get_config()->right_kd,
&cur_out_r, &err_int_r, &last_err_r);
cur_out_r = target_r + knob_blend * ((cur_out_r - target_r) / 16) / 32;
CLAMP(cur_out_r, 1024L << 16);
}
// Finalmente
motor_set_power_left(cur_out_l >> 16); // de volta para 16.0
motor_set_power_right(cur_out_r >> 16); // idem
esc_control();
}
}
if (flags & EXECUTE_RECV)
{
input_read_recv();
int16_t ch0 = recv_get_ch(0); // 16.0
int16_t ch1 = recv_get_ch(1); // 16.0
if (recv_get_ch(2) > 0)
{
ch0 = -ch0;
ch1 = -ch1;
}
target_l = (int32_t)(-ch0 + ch1) << 16; // 16.16
if (get_config()->left_reverse) target_l = -target_l;
target_r = (int32_t)(-ch0 - ch1) << 16; // 16.16
if (get_config()->right_reverse) target_r = -target_r;
SETMIN(target_l, 22L << 16);
SETMIN(target_r, 22L << 16);
CLAMP(target_l, 250L << 16);
CLAMP(target_r, 250L << 16);
}
// Coloca o uC em modo de baixo consumo de energia
if (!(flags & (EXECUTE_ENC|EXECUTE_RECV)));
sleep_mode();
}
}
// Essa função foi escrita porque a wdt_disable() original possui erros de operação
void wdt_off()
{
wdt_reset();
MCUSR = 0;
WDTCSR |= _BV(WDCE) | _BV(WDE); // "Desativa" a proteção de leitura
WDTCSR = 0; // Desliga o watchdog
}
// 16.16 16.16 8.8 8.8 8.8 16.16 16.16 16.16
void pid_control(int32_t in, int32_t target, int16_t kp, int16_t ki, int16_t kd, int32_t *cur_out, int32_t *err_int, int32_t *last_err)
{
int32_t err = target - in; // 16.16
int32_t err_d = err - *last_err; // 16.16
*err_int += ((int32_t)ki * err) >> 8; // 16.16
*cur_out += *err_int / 128;
*cur_out += ((int32_t)kp * err) >> 8; // 16.16
*cur_out += ((int32_t)kd * err_d) >> 8; // 16.16
*last_err = err; // 16.16
}
// CONTROLE DO ESC
#define ESC_DEADZONE 10
#define ESC_DAMPING_TOTAL_TIME 36
uint8_t esc_damping_frame = ESC_DAMPING_TOTAL_TIME, damping_available = 0;
uint8_t esc_first_delay = 25;
int16_t prev_esc = 0, filtered_esc = 0;
int16_t esc_damping()
{
if (esc_damping_frame < 12) return 8*esc_damping_frame;
else if (esc_damping_frame < 24) return 96 - 8*(esc_damping_frame - 12);
else return 0;
}
void esc_control()
{
int16_t esc = recv_get_ch(4) + 12;
if (esc < -244) esc = -244;
if (esc > 244) esc = 244;
if (get_config()->esc_reverse) esc = -esc;
if (get_config()->esc_calibration_mode)
{
if (esc > 170) esc = 244;
else if (esc < -170) esc = -244;
else esc = 0;
esc_set_power(esc);
}
else
{
if (esc_first_delay > 0)
{
esc_first_delay--;
return;
}
if (esc_damping_frame < ESC_DAMPING_TOTAL_TIME)
{
esc = esc_damping();
esc_damping_frame++;
}
else
{
if (damping_available && prev_esc < ESC_DEADZONE && esc >= ESC_DEADZONE)
{
esc_damping_frame = 0;
damping_available = 0;
}
else if (!damping_available && prev_esc > -ESC_DEADZONE && esc <= -ESC_DEADZONE)
damping_available = 1;
else if (esc >= -ESC_DEADZONE && esc <= ESC_DEADZONE) esc = 0;
}
prev_esc = esc;
filtered_esc += (esc - filtered_esc) * 7 / 16;
esc_set_power(filtered_esc);
}
}