2 * Copyright Droids Corporation (2009)
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 * Revision : $Id: main.h,v 1.10 2009-11-08 17:24:33 zer0 Exp $
22 #define LED_TOGGLE(port, bit) do { \
23 if (port & _BV(bit)) \
29 #define LED1_ON() sbi(PORTJ, 2)
30 #define LED1_OFF() cbi(PORTJ, 2)
31 #define LED1_TOGGLE() LED_TOGGLE(PORTJ, 2)
33 #define LED2_ON() sbi(PORTL, 7)
34 #define LED2_OFF() cbi(PORTL, 7)
35 #define LED2_TOGGLE() LED_TOGGLE(PORTL, 7)
37 #define LED3_ON() sbi(PORTJ, 3)
38 #define LED3_OFF() cbi(PORTJ, 3)
39 #define LED3_TOGGLE() LED_TOGGLE(PORTJ, 3)
41 #define LED4_ON() sbi(PORTL, 6)
42 #define LED4_OFF() cbi(PORTL, 6)
43 #define LED4_TOGGLE() LED_TOGGLE(PORTL, 6)
45 #define BRAKE_DDR() do { DDRJ |= 0xF0; } while(0)
46 #define BRAKE_ON() do { PORTJ |= 0xF0; } while(0)
47 #define BRAKE_OFF() do { PORTJ &= 0x0F; } while(0)
49 /* only 90 seconds, don't forget it :) */
52 /* decrease track to decrease angle */
53 #define EXT_TRACK_MM 302.0188
54 #define VIRTUAL_TRACK_MM EXT_TRACK_MM
56 #define ROBOT_LENGTH 320
57 #define ROBOT_WIDTH 320
59 /* it is a 2048 imps -> 8192 because we see 1/4 period
60 * and diameter: 55mm -> perimeter 173mm
62 /* increase it to go further */
63 #define IMP_ENCODERS 2048
64 #define WHEEL_DIAMETER_MM 55.0
65 #define WHEEL_PERIM_MM (WHEEL_DIAMETER_MM * M_PI)
67 #define DIST_IMP_MM (((IMP_ENCODERS*4) / WHEEL_PERIM_MM) * IMP_COEF)
69 #define LEFT_ENCODER ((void *)1)
70 #define RIGHT_ENCODER ((void *)0)
72 #define LEFT_PWM ((void *)&gen.pwm1_4A)
73 #define RIGHT_PWM ((void *)&gen.pwm2_4B)
75 #define LEFT_PUMP1_PWM ((void *)&gen.pwm3_1A)
76 #define LEFT_PUMP2_PWM ((void *)&gen.pwm4_1B)
79 #define E_USER_STRAT 194
80 #define E_USER_I2C_PROTO 195
81 #define E_USER_SENSOR 196
89 #define I2C_POLL_PRIO 20
90 #define EEPROM_TIME_PRIO 10
92 #define CS_PERIOD 5000L
96 /* generic to all boards */
98 /* command line interface */
100 char prompt[RDLINE_PROMPT_SIZE];
103 struct pwm_ng pwm1_4A;
104 struct pwm_ng pwm2_4B;
105 struct pwm_ng pwm3_1A;
106 struct pwm_ng pwm4_1B;
109 struct pwm_ng servo1;
110 struct pwm_ng servo2;
111 struct pwm_ng servo3;
112 struct pwm_ng servo4;
118 uint8_t logs[NB_LOGS+1];
126 struct pid_filter pid;
127 struct quadramp_filter qr;
128 struct blocking_detection bd;
131 /* mainboard specific */
133 #define DO_ENCODERS 1
140 uint8_t flags; /* misc flags */
142 /* control systems */
143 struct cs_block angle;
144 struct cs_block distance;
146 /* x,y positionning */
147 struct robot_system rs;
148 struct robot_position pos;
149 struct trajectory traj;
153 volatile int16_t speed_a; /* current angle speed */
154 volatile int16_t speed_d; /* current dist speed */
155 int32_t pwm_l; /* current left pwm */
156 int32_t pwm_r; /* current right pwm */
157 uint8_t enable_pickup_wheels; /* these PWM are on sensorboard */
161 /* state of mechboard, synchronized through i2c */
166 uint8_t column_flags;
174 /* currents (for left arm, we can just read it on adc) */
175 int16_t pump_right1_current;
176 int16_t pump_right2_current;
178 /* pwm for lintel servos */
179 uint16_t servo_lintel_left;
180 uint16_t servo_lintel_right;
183 /* state of sensorboard, synchronized through i2c */
193 #define I2C_SCAN_DONE 1
195 #define I2C_COLUMN_NO_DROPZONE -1
201 extern struct genboard gen;
202 extern struct mainboard mainboard;
203 extern struct mechboard mechboard;
204 extern struct sensorboard sensorboard;
206 /* start the bootloader */
207 void bootloader(void);
209 #define WAIT_COND_OR_TIMEOUT(cond, timeout) \
211 microseconds __us = time_get_us2(); \
214 if (time_get_us2() - __us > (timeout)*1000L) {\
220 DEBUG(E_USER_STRAT, "cond is true at line %d",\
223 DEBUG(E_USER_STRAT, "timeout at line %d", \