prepare cobboard and ballboard
[aversive.git] / projects / microb2010 / cobboard / 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.6 2009-11-08 17:25:00 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 #define LEFT_SPICKLE_ENCODER   ((void *)0)
50 #define RIGHT_SPICKLE_ENCODER  ((void *)1)
51 #define SHOVEL_ENCODER         ((void *)1)
52
53 #define LEFT_SPICKLE_PWM       ((void *)&gen.pwm1_4A)
54 #define RIGHT_SPICKLE_PWM      ((void *)&gen.pwm2_4B)
55 #define SHOVEL_PWM             ((void *)&gen.pwm2_4B)
56
57 /** ERROR NUMS */
58 #define E_USER_I2C_PROTO       195
59 #define E_USER_SENSOR          196
60 #define E_USER_SPICKLE         197
61 #define E_USER_ST_MACH         199
62 #define E_USER_CS              200
63 #define E_USER_AX12            201
64
65 #define LED_PRIO           170
66 #define TIME_PRIO          160
67 #define ADC_PRIO           120
68 #define CS_PRIO            100
69 #define I2C_POLL_PRIO       20
70
71 #define CS_PERIOD 5000L
72
73 #define NB_LOGS 4
74
75 /* generic to all boards */
76 struct genboard {
77         /* command line interface */
78         struct rdline rdl;
79         char prompt[RDLINE_PROMPT_SIZE];
80
81         /* motors */
82         struct pwm_ng pwm1_4A;
83         struct pwm_ng pwm2_4B;
84         struct pwm_ng pwm3_1A;
85         struct pwm_ng pwm4_1B;
86
87         /* servos */
88         struct pwm_ng servo1;
89         struct pwm_ng servo2;
90         struct pwm_ng servo3;
91         struct pwm_ng servo4;
92         
93         /* ax12 interface */
94         AX12 ax12;
95
96         /* log */
97         uint8_t logs[NB_LOGS+1];
98         uint8_t log_level;
99         uint8_t debug;
100 };
101
102 struct cs_block {
103         uint8_t on;
104         struct cs cs;
105         struct pid_filter pid;
106         struct quadramp_filter qr;
107         struct blocking_detection bd;
108 };
109
110 /* cobboard specific */
111 struct cobboard {
112 #define DO_ENCODERS  1
113 #define DO_CS        2
114 #define DO_BD        4
115 #define DO_POWER     8
116         uint8_t flags;                /* misc flags */
117
118         /* control systems */
119         struct cs_block left_spickle;
120         struct cs_block right_spickle;
121         struct cs_block shovel;
122
123         /* robot status */
124         uint8_t our_color;
125         volatile uint8_t cob_count;
126         volatile uint8_t status;
127 };
128
129 extern struct genboard gen;
130 extern struct cobboard cobboard;
131
132 /* start the bootloader */
133 void bootloader(void);
134
135 #define DEG(x) (((double)(x)) * (180.0 / M_PI))
136 #define RAD(x) (((double)(x)) * (M_PI / 180.0))
137 #define M_2PI (2*M_PI)
138
139 #define WAIT_COND_OR_TIMEOUT(cond, timeout)                   \
140 ({                                                            \
141         microseconds __us = time_get_us2();                   \
142         uint8_t __ret = 1;                                    \
143         while(! (cond)) {                                     \
144                 if (time_get_us2() - __us > (timeout)*1000L) {\
145                         __ret = 0;                            \
146                         break;                                \
147                 }                                             \
148         }                                                     \
149         __ret;                                                \
150 })