beacon from 2009
[aversive.git] / projects / microb2010 / mainboard / cs.c
1 /*
2  *  Copyright Droids Corporation
3  *  Olivier Matz <zer0@droids-corp.org>
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  *
19  *  Revision : $Id: cs.c,v 1.9 2009-11-08 17:24:33 zer0 Exp $
20  *
21  */
22
23 #include <stdio.h>
24 #include <string.h>
25 #include <stdint.h>
26
27 #include <aversive.h>
28 #include <aversive/error.h>
29
30 #include <ax12.h>
31 #include <spi.h>
32 #include <encoders_spi.h>
33 #include <pwm_ng.h>
34 #include <timer.h>
35 #include <scheduler.h>
36 #include <clock_time.h>
37 #include <adc.h>
38
39 #include <pid.h>
40 #include <quadramp.h>
41 #include <control_system_manager.h>
42 #include <trajectory_manager.h>
43 #include <vect_base.h>
44 #include <lines.h>
45 #include <polygon.h>
46 #include <obstacle_avoidance.h>
47 #include <blocking_detection_manager.h>
48 #include <robot_system.h>
49 #include <position_manager.h>
50
51 #include <parse.h>
52 #include <rdline.h>
53
54 #include "main.h"
55 #include "robotsim.h"
56 #include "strat.h"
57 #include "actuator.h"
58
59 void dump_cs(const char *name, struct cs *cs);
60
61 #ifndef HOST_VERSION
62 int32_t encoders_left_cobroller_speed(void *number)
63 {
64         static volatile int32_t roller_pos;
65         int32_t tmp, speed;
66         tmp = encoders_spi_get_value(number);
67         speed = tmp - roller_pos;
68         roller_pos = tmp;
69         return speed;
70 }
71
72 int32_t encoders_right_cobroller_speed(void *number)
73 {
74         static volatile int32_t roller_pos;
75         int32_t tmp, speed;
76         tmp = encoders_spi_get_value(number);
77         speed = tmp - roller_pos;
78         roller_pos = tmp;
79         return speed;
80 }
81 #endif
82
83 /* called every 5 ms */
84 static void do_cs(void *dummy)
85 {
86         static uint16_t cpt = 0;
87         static int32_t old_a = 0, old_d = 0;
88
89 #ifdef HOST_VERSION
90         robotsim_update();
91 #else
92         /* read encoders */
93         if (mainboard.flags & DO_ENCODERS) {
94                 encoders_spi_manage(NULL);
95         }
96 #endif
97
98         /* robot system, conversion to angle,distance */
99         if (mainboard.flags & DO_RS) {
100                 int16_t a,d;
101                 rs_update(&mainboard.rs); /* takes about 0.5 ms */
102                 /* process and store current speed */
103                 a = rs_get_angle(&mainboard.rs);
104                 d = rs_get_distance(&mainboard.rs);
105                 mainboard.speed_a = a - old_a;
106                 mainboard.speed_d = d - old_d;
107                 old_a = a;
108                 old_d = d;
109         }
110
111         /* control system */
112         if (mainboard.flags & DO_CS) {
113                 if (mainboard.angle.on)
114                         cs_manage(&mainboard.angle.cs);
115                 if (mainboard.distance.on)
116                         cs_manage(&mainboard.distance.cs);
117 #ifndef HOST_VERSION
118                 if (mainboard.left_cobroller.on)
119                         cs_manage(&mainboard.left_cobroller.cs);
120                 if (mainboard.right_cobroller.on)
121                         cs_manage(&mainboard.right_cobroller.cs);
122 #endif
123         }
124         if ((cpt & 1) && (mainboard.flags & DO_POS)) {
125                 /* about 1.5ms (worst case without centrifugal force
126                  * compensation) */
127                 position_manage(&mainboard.pos);
128         }
129         if ((mainboard.flags & DO_BD) && (mainboard.flags & DO_POWER)) {
130                 bd_manage_from_cs(&mainboard.angle.bd, &mainboard.angle.cs);
131                 bd_manage_from_cs(&mainboard.distance.bd, &mainboard.distance.cs);
132 #ifndef HOST_VERSION
133                 bd_manage_from_cs(&mainboard.left_cobroller.bd, &mainboard.left_cobroller.cs);
134                 bd_manage_from_cs(&mainboard.right_cobroller.bd, &mainboard.right_cobroller.cs);
135                 if (mainboard.flags & DO_ERRBLOCKING) {
136 /*                      if (bd_get(&mainboard.left_cobroller.bd) || */
137 /*                          bd_get(&mainboard.left_cobroller.bd)) { */
138 /*                              printf_P(PSTR("MOTOR BLOCKED STOP ALL\r\n")); */
139 /*                              mainboard.flags &= ~(DO_POWER | DO_ERRBLOCKING); */
140 /*                      } */
141                 }
142 #endif
143         }
144 #ifndef HOST_VERSION
145         if (mainboard.flags & DO_TIMER) {
146                 uint8_t second;
147                 /* the robot should stop correctly in the strat, but
148                  * in some cases, we must force the stop from an
149                  * interrupt */
150                 second = time_get_s();
151                 if (second >= MATCH_TIME + 2) {
152                         pwm_ng_set(LEFT_PWM, 0);
153                         pwm_ng_set(RIGHT_PWM, 0);
154                         printf_P(PSTR("END OF TIME\r\n"));
155                         while(1);
156                 }
157         }
158 #endif
159         /* brakes */
160         if (mainboard.flags & DO_POWER)
161                 BRAKE_OFF();
162         else
163                 BRAKE_ON();
164         cpt++;
165
166 #ifdef HOST_VERSION
167         if ((cpt & 7) == 0) {
168                 robotsim_dump();
169         }
170 #endif
171 }
172
173 void dump_cs_debug(const char *name, struct cs *cs)
174 {
175         DEBUG(E_USER_CS, "%s cons=% .5"PRIi32" fcons=% .5"PRIi32" err=% .5"PRIi32" "
176               "in=% .5"PRIi32" out=% .5"PRIi32"",
177               name, cs_get_consign(cs), cs_get_filtered_consign(cs),
178               cs_get_error(cs), cs_get_filtered_feedback(cs),
179               cs_get_out(cs));
180 }
181
182 void dump_cs(const char *name, struct cs *cs)
183 {
184         printf_P(PSTR("%s cons=% .5"PRIi32" fcons=% .5"PRIi32" err=% .5"PRIi32" "
185                       "in=% .5"PRIi32" out=% .5"PRIi32"\r\n"),
186                  name, cs_get_consign(cs), cs_get_filtered_consign(cs),
187                  cs_get_error(cs), cs_get_filtered_feedback(cs),
188                  cs_get_out(cs));
189 }
190
191 void dump_pid(const char *name, struct pid_filter *pid)
192 {
193         printf_P(PSTR("%s P=% .8"PRIi32" I=% .8"PRIi32" D=% .8"PRIi32" out=% .8"PRIi32"\r\n"),
194                  name,
195                  pid_get_value_in(pid) * pid_get_gain_P(pid),
196                  pid_get_value_I(pid) * pid_get_gain_I(pid),
197                  pid_get_value_D(pid) * pid_get_gain_D(pid),
198                  pid_get_value_out(pid));
199 }
200
201 void microb_cs_init(void)
202 {
203         /* ROBOT_SYSTEM */
204         rs_init(&mainboard.rs);
205         rs_set_left_pwm(&mainboard.rs, pwm_set_and_save, LEFT_PWM);
206         rs_set_right_pwm(&mainboard.rs,  pwm_set_and_save, RIGHT_PWM);
207         /* increase gain to decrease dist, increase left and it will turn more left */
208 #ifdef HOST_VERSION
209         rs_set_left_ext_encoder(&mainboard.rs, robotsim_encoder_get,
210                                 LEFT_ENCODER, IMP_COEF * 1.);
211         rs_set_right_ext_encoder(&mainboard.rs, robotsim_encoder_get,
212                                  RIGHT_ENCODER, IMP_COEF * 1.);
213 #else
214         rs_set_left_ext_encoder(&mainboard.rs, encoders_spi_get_value,
215                                 LEFT_ENCODER, IMP_COEF * -1.011718);
216         rs_set_right_ext_encoder(&mainboard.rs, encoders_spi_get_value,
217                                  RIGHT_ENCODER, IMP_COEF * 1.012695);
218 #endif
219         /* rs will use external encoders */
220         rs_set_flags(&mainboard.rs, RS_USE_EXT);
221
222         /* POSITION MANAGER */
223         position_init(&mainboard.pos);
224         position_set_physical_params(&mainboard.pos, VIRTUAL_TRACK_MM, DIST_IMP_MM);
225         position_set_related_robot_system(&mainboard.pos, &mainboard.rs);
226         position_set_centrifugal_coef(&mainboard.pos, 0.000016);
227         position_use_ext(&mainboard.pos);
228
229         /* TRAJECTORY MANAGER */
230         trajectory_init(&mainboard.traj, CS_HZ);
231         trajectory_set_cs(&mainboard.traj, &mainboard.distance.cs,
232                           &mainboard.angle.cs);
233         trajectory_set_robot_params(&mainboard.traj, &mainboard.rs, &mainboard.pos);
234         trajectory_set_speed(&mainboard.traj, SPEED_DIST_FAST, SPEED_ANGLE_FAST); /* d, a */
235         trajectory_set_acc(&mainboard.traj, ACC_DIST, ACC_ANGLE); /* d, a */
236         /* distance window, angle window, angle start */
237         trajectory_set_windows(&mainboard.traj, 200., 5.0, 30.);
238
239         /* ---- CS angle */
240         /* PID */
241         pid_init(&mainboard.angle.pid);
242         pid_set_gains(&mainboard.angle.pid, 850, 30, 15000);
243         pid_set_maximums(&mainboard.angle.pid, 0, 10000, 4095);
244         pid_set_out_shift(&mainboard.angle.pid, 10);
245         pid_set_derivate_filter(&mainboard.angle.pid, 4);
246
247         /* QUADRAMP */
248         quadramp_init(&mainboard.angle.qr);
249         quadramp_set_1st_order_vars(&mainboard.angle.qr, 500, 500); /* set speed */
250         quadramp_set_2nd_order_vars(&mainboard.angle.qr, 5, 5); /* set accel */
251
252         /* CS */
253         cs_init(&mainboard.angle.cs);
254         cs_set_consign_filter(&mainboard.angle.cs, quadramp_do_filter, &mainboard.angle.qr);
255         cs_set_correct_filter(&mainboard.angle.cs, pid_do_filter, &mainboard.angle.pid);
256         cs_set_process_in(&mainboard.angle.cs, rs_set_angle, &mainboard.rs);
257         cs_set_process_out(&mainboard.angle.cs, rs_get_angle, &mainboard.rs);
258         cs_set_consign(&mainboard.angle.cs, 0);
259
260         /* Blocking detection */
261         bd_init(&mainboard.angle.bd);
262         bd_set_speed_threshold(&mainboard.angle.bd, 80);
263         bd_set_current_thresholds(&mainboard.angle.bd, 500, 8000, 1000000, 20);
264
265         /* ---- CS distance */
266         /* PID */
267         pid_init(&mainboard.distance.pid);
268         pid_set_gains(&mainboard.distance.pid, 850, 30, 15000);
269         pid_set_maximums(&mainboard.distance.pid, 0, 10000, 4095);
270         pid_set_out_shift(&mainboard.distance.pid, 10);
271         pid_set_derivate_filter(&mainboard.distance.pid, 6);
272
273         /* QUADRAMP */
274         quadramp_init(&mainboard.distance.qr);
275         quadramp_set_1st_order_vars(&mainboard.distance.qr, 500, 500); /* set speed */
276         quadramp_set_2nd_order_vars(&mainboard.distance.qr, 5., 5.); /* set accel */
277
278         /* CS */
279         cs_init(&mainboard.distance.cs);
280         cs_set_consign_filter(&mainboard.distance.cs, quadramp_do_filter, &mainboard.distance.qr);
281         cs_set_correct_filter(&mainboard.distance.cs, pid_do_filter, &mainboard.distance.pid);
282         cs_set_process_in(&mainboard.distance.cs, rs_set_distance, &mainboard.rs);
283         cs_set_process_out(&mainboard.distance.cs, rs_get_distance, &mainboard.rs);
284         cs_set_consign(&mainboard.distance.cs, 0);
285
286         /* Blocking detection */
287         bd_init(&mainboard.distance.bd);
288         bd_set_speed_threshold(&mainboard.distance.bd, 60);
289         bd_set_current_thresholds(&mainboard.distance.bd, 500, 8000, 1000000, 20);
290
291 #ifndef HOST_VERSION
292         /* ---- CS left_cobroller */
293         /* PID */
294         pid_init(&mainboard.left_cobroller.pid);
295         pid_set_gains(&mainboard.left_cobroller.pid, 80, 10, 10);
296         pid_set_maximums(&mainboard.left_cobroller.pid, 0, 30000, 4095);
297         pid_set_out_shift(&mainboard.left_cobroller.pid, 5);
298         pid_set_derivate_filter(&mainboard.left_cobroller.pid, 6);
299
300         /* CS */
301         cs_init(&mainboard.left_cobroller.cs);
302         cs_set_correct_filter(&mainboard.left_cobroller.cs, pid_do_filter, &mainboard.left_cobroller.pid);
303         cs_set_process_in(&mainboard.left_cobroller.cs, pwm_ng_set, LEFT_COBROLLER_PWM);
304         cs_set_process_out(&mainboard.left_cobroller.cs, encoders_left_cobroller_speed, LEFT_COBROLLER_ENCODER);
305         cs_set_consign(&mainboard.left_cobroller.cs, 0);
306
307         /* Blocking detection */
308         bd_init(&mainboard.left_cobroller.bd);
309         bd_set_speed_threshold(&mainboard.left_cobroller.bd, 60);
310         bd_set_current_thresholds(&mainboard.left_cobroller.bd, 500, 8000, 1000000, 50);
311
312         /* ---- CS right_cobroller */
313         /* PID */
314         pid_init(&mainboard.right_cobroller.pid);
315         pid_set_gains(&mainboard.right_cobroller.pid, 80, 10, 10);
316         pid_set_maximums(&mainboard.right_cobroller.pid, 0, 30000, 4095);
317         pid_set_out_shift(&mainboard.right_cobroller.pid, 5);
318         pid_set_derivate_filter(&mainboard.right_cobroller.pid, 6);
319
320         /* CS */
321         cs_init(&mainboard.right_cobroller.cs);
322         cs_set_correct_filter(&mainboard.right_cobroller.cs, pid_do_filter, &mainboard.right_cobroller.pid);
323         cs_set_process_in(&mainboard.right_cobroller.cs, pwm_ng_set, RIGHT_COBROLLER_PWM);
324         cs_set_process_out(&mainboard.right_cobroller.cs, encoders_right_cobroller_speed, RIGHT_COBROLLER_ENCODER);
325         cs_set_consign(&mainboard.right_cobroller.cs, 0);
326
327         /* Blocking detection */
328         bd_init(&mainboard.right_cobroller.bd);
329         bd_set_speed_threshold(&mainboard.right_cobroller.bd, 60);
330         bd_set_current_thresholds(&mainboard.right_cobroller.bd, 500, 8000, 1000000, 50);
331 #endif /* !HOST_VERSION */
332
333         /* set them on !! */
334         mainboard.angle.on = 1;
335         mainboard.distance.on = 1;
336         mainboard.left_cobroller.on = 1;
337         mainboard.right_cobroller.on = 1;
338
339         scheduler_add_periodical_event_priority(do_cs, NULL,
340                                                 5000L / SCHEDULER_UNIT,
341                                                 CS_PRIO);
342
343 }