2 * Copyright Droids Corporation
3 * Olivier Matz <zer0@droids-corp.org>
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.
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.
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
19 * Revision : $Id: main.c,v 1.10 2009-11-08 17:24:33 zer0 Exp $
27 #include <aversive/pgmspace.h>
28 #include <aversive/wait.h>
29 #include <aversive/error.h>
30 #include <aversive/eeprom.h>
36 #include <encoders_spi.h>
39 #include <scheduler.h>
40 #include <clock_time.h>
45 #include <control_system_manager.h>
46 #include <trajectory_manager.h>
47 #include <vect_base.h>
50 #include <obstacle_avoidance.h>
51 #include <blocking_detection_manager.h>
52 #include <robot_system.h>
53 #include <position_manager.h>
58 #include "../common/eeprom_mapping.h"
59 #include "../common/i2c_commands.h"
63 #include "ax12_user.h"
69 #include "strat_base.h"
71 #include "i2c_protocol.h"
73 /* 0 means "programmed"
74 * ---- with 16 Mhz quartz
79 * BOOTZ 1-0 : 01 (4K bootloader)
80 * BOOTRST : 0 (reset on bootloader)
86 struct mainboard mainboard;
87 volatile struct cobboard cobboard;
88 volatile struct ballboard ballboard;
91 /***********************/
95 #define BOOTLOADER_ADDR 0x3f000
96 if (pgm_read_byte_far(BOOTLOADER_ADDR) == 0xff) {
97 printf_P(PSTR("Bootloader is not present\r\n"));
102 /* ... very specific :( */
120 __asm__ __volatile__ ("ldi r31,0xf8\n");
121 __asm__ __volatile__ ("ldi r30,0x00\n");
122 __asm__ __volatile__ ("eijmp\n");
127 void do_time_monitor(void *dummy)
130 seconds = eeprom_read_word(EEPROM_TIME_ADDRESS);
132 eeprom_write_word(EEPROM_TIME_ADDRESS, seconds);
135 void do_led_blink(void *dummy)
137 static uint8_t a = 0;
139 if (mainboard.flags & DO_ERRBLOCKING) {
154 static void main_timer_interrupt(void)
156 static uint8_t cpt = 0;
159 if ((cpt & 0x3) == 0)
160 scheduler_interrupt();
171 /* CPLD reset on PG3 */
173 PORTG &= ~(1<<3); /* implicit */
184 memset(&gen, 0, sizeof(gen));
185 memset(&mainboard, 0, sizeof(mainboard));
186 mainboard.flags = DO_ENCODERS | DO_CS | DO_RS |
187 DO_POS | DO_POWER | DO_BD | DO_ERRBLOCKING;
188 ballboard.lcob = I2C_COB_NONE;
189 ballboard.rcob = I2C_COB_NONE;
193 uart_register_rx_event(CMDLINE_UART, emergency);
195 #if CMDLINE_UART == 3
196 fdevopen(uart3_dev_send, uart3_dev_recv);
197 #elif CMDLINE_UART == 1
198 fdevopen(uart1_dev_send, uart1_dev_recv);
201 /* check eeprom to avoid to run the bad program */
202 if (eeprom_read_byte(EEPROM_MAGIC_ADDRESS) !=
203 EEPROM_MAGIC_MAINBOARD) {
206 printf_P(PSTR("Bad eeprom value ('f' to force)\r\n"));
207 c = uart_recv(CMDLINE_UART);
209 eeprom_write_byte(EEPROM_MAGIC_ADDRESS, EEPROM_MAGIC_MAINBOARD);
213 #endif /* ! HOST_VERSION */
216 error_register_emerg(mylog);
217 error_register_error(mylog);
218 error_register_warning(mylog);
219 error_register_notice(mylog);
220 error_register_debug(mylog);
224 encoders_spi_init(); /* this will also init spi hardware */
227 i2c_init(I2C_MODE_MASTER, I2C_MAINBOARD_ADDR);
229 i2c_register_recv_event(i2c_recvevent);
230 i2c_register_send_event(i2c_sendevent);
234 timer0_register_OV_intr(main_timer_interrupt);
237 PWM_NG_TIMER_16BITS_INIT(1, TIMER_16_MODE_PWM_10,
238 TIMER1_PRESCALER_DIV_1);
239 PWM_NG_TIMER_16BITS_INIT(4, TIMER_16_MODE_PWM_10,
240 TIMER4_PRESCALER_DIV_1);
242 PWM_NG_INIT16(&gen.pwm1_4A, 4, A, 10, PWM_NG_MODE_SIGNED,
244 PWM_NG_INIT16(&gen.pwm2_4B, 4, B, 10, PWM_NG_MODE_SIGNED |
245 PWM_NG_MODE_SIGN_INVERTED, &PORTD, 5);
246 PWM_NG_INIT16(&gen.pwm3_1A, 1, A, 10, PWM_NG_MODE_SIGNED,
248 PWM_NG_INIT16(&gen.pwm4_1B, 1, B, 10, PWM_NG_MODE_SIGNED,
253 PWM_NG_TIMER_16BITS_INIT(3, TIMER_16_MODE_PWM_10,
254 TIMER1_PRESCALER_DIV_256);
255 PWM_NG_INIT16(&gen.servo1, 3, C, 10, PWM_NG_MODE_NORMAL,
257 PWM_NG_TIMER_16BITS_INIT(5, TIMER_16_MODE_PWM_10,
258 TIMER1_PRESCALER_DIV_256);
259 PWM_NG_INIT16(&gen.servo2, 5, A, 10, PWM_NG_MODE_NORMAL,
261 PWM_NG_INIT16(&gen.servo3, 5, B, 10, PWM_NG_MODE_NORMAL,
263 PWM_NG_INIT16(&gen.servo4, 5, C, 10, PWM_NG_MODE_NORMAL,
265 support_balls_deploy(); /* init pwm for servos */
266 #endif /* !HOST_VERSION */
276 scheduler_add_periodical_event_priority(do_led_blink, NULL,
277 100000L / SCHEDULER_UNIT,
279 #endif /* !HOST_VERSION */
281 /* all cs management */
285 time_init(TIME_PRIO);
288 /* sensors, will also init hardware adc */
291 /* start i2c slave polling */
292 scheduler_add_periodical_event_priority(i2c_poll_slaves, NULL,
293 8000L / SCHEDULER_UNIT, I2C_POLL_PRIO);
294 #endif /* !HOST_VERSION */
297 gen.logs[0] = E_USER_STRAT;
301 /* strat-related event */
302 scheduler_add_periodical_event_priority(strat_event, NULL,
303 10000L / SCHEDULER_UNIT,
307 /* eeprom time monitor */
308 scheduler_add_periodical_event_priority(do_time_monitor, NULL,
309 1000000L / SCHEDULER_UNIT,
311 #endif /* !HOST_VERSION */
315 printf_P(PSTR("\r\n"));
316 printf_P(PSTR("Respect et robustesse.\r\n"));
320 seconds = eeprom_read_word(EEPROM_TIME_ADDRESS);
321 printf_P(PSTR("Running since %d mn %d\r\n"), seconds/60, seconds%60);
326 strat_reset_pos(400, COLOR_Y(400), COLOR_A(-90));