7f210588b0418ebb4db2891ce689d688fdc09101
[aversive.git] / projects / microb2010 / mainboard / main.h
1 /*  
2  *  Copyright Droids Corporation (2009)
3  * 
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.
8  *
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.
13  *
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
17  *
18  *  Revision : $Id: main.h,v 1.10 2009-11-08 17:24:33 zer0 Exp $
19  *
20  */
21
22 #define LED_TOGGLE(port, bit) do {              \
23                 if (port & _BV(bit))            \
24                         port &= ~_BV(bit);      \
25                 else                            \
26                         port |= _BV(bit);       \
27         } while(0)
28
29 #define LED1_ON()       sbi(PORTJ, 2)
30 #define LED1_OFF()      cbi(PORTJ, 2)
31 #define LED1_TOGGLE()   LED_TOGGLE(PORTJ, 2)
32
33 #define LED2_ON()       sbi(PORTL, 7)
34 #define LED2_OFF()      cbi(PORTL, 7)
35 #define LED2_TOGGLE()   LED_TOGGLE(PORTL, 7)
36
37 #define LED3_ON()       sbi(PORTJ, 3)
38 #define LED3_OFF()      cbi(PORTJ, 3)
39 #define LED3_TOGGLE()   LED_TOGGLE(PORTJ, 3)
40
41 #define LED4_ON()       sbi(PORTL, 6)
42 #define LED4_OFF()      cbi(PORTL, 6)
43 #define LED4_TOGGLE()   LED_TOGGLE(PORTL, 6)
44
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)
48
49 /* only 90 seconds, don't forget it :) */
50 #define MATCH_TIME 89
51
52 /* decrease track to decrease angle */
53 #define EXT_TRACK_MM 302.0188
54 #define VIRTUAL_TRACK_MM EXT_TRACK_MM
55
56 #define ROBOT_LENGTH 320
57 #define ROBOT_WIDTH 320
58
59 /* it is a 2048 imps -> 8192 because we see 1/4 period
60  * and diameter: 55mm -> perimeter 173mm 
61  * 8192/173 -> 473 */
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)
66 #define IMP_COEF 10.
67 #define DIST_IMP_MM (((IMP_ENCODERS*4) / WHEEL_PERIM_MM) * IMP_COEF)
68
69 #define LEFT_ENCODER            ((void *)1)
70 #define RIGHT_ENCODER           ((void *)0)
71 #define LEFT_COBROLLER_ENCODER  ((void *)2)
72 #define RIGHT_COBROLLER_ENCODER ((void *)3)
73
74 #define LEFT_PWM            ((void *)&gen.pwm1_4A)
75 #define RIGHT_PWM           ((void *)&gen.pwm2_4B)
76 #define LEFT_COBROLLER_PWM  ((void *)&gen.pwm3_1A)
77 #define RIGHT_COBROLLER_PWM ((void *)&gen.pwm4_1B)
78
79 /** ERROR NUMS */
80 #define E_USER_STRAT           194
81 #define E_USER_I2C_PROTO       195
82 #define E_USER_SENSOR          196
83 #define E_USER_CS              197
84
85 #define LED_PRIO           170
86 #define TIME_PRIO          160
87 #define ADC_PRIO           120
88 #define CS_PRIO            100
89 #define STRAT_PRIO          30
90 #define I2C_POLL_PRIO       20
91 #define EEPROM_TIME_PRIO    10
92
93 #define CS_PERIOD 5000L
94
95 #define NB_LOGS 4
96
97 /* generic to all boards */
98 struct genboard {
99         /* command line interface */
100         struct rdline rdl;
101         char prompt[RDLINE_PROMPT_SIZE];
102
103         /* motors */
104         struct pwm_ng pwm1_4A;
105         struct pwm_ng pwm2_4B;
106         struct pwm_ng pwm3_1A;
107         struct pwm_ng pwm4_1B;
108
109         /* servos */
110         struct pwm_ng servo1;
111         struct pwm_ng servo2;
112         struct pwm_ng servo3;
113         struct pwm_ng servo4;
114         
115         /* ax12 interface */
116         AX12 ax12;
117
118         /* log */
119         uint8_t logs[NB_LOGS+1];
120         uint8_t log_level;
121         uint8_t debug;
122 };
123
124 struct cs_block {
125         uint8_t on;
126         struct cs cs;
127         struct pid_filter pid;
128         struct quadramp_filter qr;
129         struct blocking_detection bd;
130 };
131
132 /* mainboard specific */
133 struct mainboard {
134 #define DO_ENCODERS  1
135 #define DO_CS        2
136 #define DO_RS        4
137 #define DO_POS       8
138 #define DO_BD       16
139 #define DO_TIMER    32
140 #define DO_POWER    64
141         uint8_t flags;                /* misc flags */
142
143         /* control systems */
144         struct cs_block angle;
145         struct cs_block distance;
146         struct cs_block left_cobroller;
147         struct cs_block right_cobroller;
148
149         /* x,y positionning */
150         struct robot_system rs;
151         struct robot_position pos;
152         struct trajectory traj;
153
154         /* robot status */
155         uint8_t our_color;
156         volatile int16_t speed_a;     /* current angle speed */
157         volatile int16_t speed_d;     /* current dist speed */
158         int32_t pwm_l;                /* current left pwm */
159         int32_t pwm_r;                /* current right pwm */
160 };
161
162 /* state of cobboard, synchronized through i2c */
163 struct cobboard {
164         uint8_t mode;   
165         uint8_t status;
166 };
167
168 /* state of ballboard, synchronized through i2c */
169 struct ballboard {
170         uint8_t status;
171 };
172
173 extern struct genboard gen;
174 extern struct mainboard mainboard;
175 extern struct cobboard cobboard;
176 extern struct ballboard ballboard;
177
178 /* start the bootloader */
179 void bootloader(void);
180
181 #define WAIT_COND_OR_TIMEOUT(cond, timeout)                   \
182 ({                                                            \
183         microseconds __us = time_get_us2();                   \
184         uint8_t __ret = 1;                                    \
185         while(! (cond)) {                                     \
186                 if (time_get_us2() - __us > (timeout)*1000L) {\
187                         __ret = 0;                            \
188                         break;                                \
189                 }                                             \
190         }                                                     \
191         if (__ret)                                            \
192                 DEBUG(E_USER_STRAT, "cond is true at line %d",\
193                       __LINE__);                              \
194         else                                                  \
195                 DEBUG(E_USER_STRAT, "timeout at line %d",     \
196                       __LINE__);                              \
197                                                               \
198         __ret;                                                \
199 })