2 * Copyright Droids Corporation (2009)
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: sensor.c,v 1.3 2009-05-27 20:04:07 zer0 Exp $
26 #include <aversive/error.h>
29 #include <scheduler.h>
35 #include <control_system_manager.h>
36 #include <blocking_detection_manager.h>
50 int16_t (*filter)(struct adc_infos *, int16_t);
53 /* reach 90% of the value in 4 samples */
54 int16_t rii_light(struct adc_infos *adc, int16_t val)
56 adc->prev_val = val + (int32_t)adc->prev_val / 2;
57 return adc->prev_val / 2;
60 /* reach 90% of the value in 8 samples */
61 int16_t rii_medium(struct adc_infos *adc, int16_t val)
63 adc->prev_val = val + ((int32_t)adc->prev_val * 3) / 4;
64 return adc->prev_val / 4;
67 /* reach 90% of the value in 16 samples */
68 int16_t rii_strong(struct adc_infos *adc, int16_t val)
70 adc->prev_val = val + ((int32_t)adc->prev_val * 7) / 8;
71 return adc->prev_val / 8;
75 #define ADC_CONF(x) ( ADC_REF_AVCC | ADC_MODE_INT | MUX_ADC##x )
77 /* define which ADC to poll, see in sensor.h */
78 static struct adc_infos adc_infos[ADC_MAX] = {
80 [ADC_CSENSE1] = { .config = ADC_CONF(0), .filter = rii_medium },
81 [ADC_CSENSE2] = { .config = ADC_CONF(1), .filter = rii_medium },
82 [ADC_CSENSE3] = { .config = ADC_CONF(2), .filter = rii_medium },
83 [ADC_CSENSE4] = { .config = ADC_CONF(3), .filter = rii_medium },
85 /* add adc on "cap" pins if needed */
86 /* [ADC_CAP1] = { .config = ADC_CONF(10) }, */
87 /* [ADC_CAP2] = { .config = ADC_CONF(11) }, */
88 /* [ADC_CAP3] = { .config = ADC_CONF(12) }, */
89 /* [ADC_CAP4] = { .config = ADC_CONF(13) }, */
92 static void adc_event(int16_t result);
94 /* called every 10 ms, see init below */
95 static void do_adc(void *dummy)
97 /* launch first conversion */
98 adc_launch(adc_infos[0].config);
101 static void adc_event(int16_t result)
103 static uint8_t i = 0;
105 /* filter value if needed */
106 if (adc_infos[i].filter)
107 adc_infos[i].value = adc_infos[i].filter(&adc_infos[i],
110 adc_infos[i].value = result;
116 adc_launch(adc_infos[i].config);
119 int16_t sensor_get_adc(uint8_t i)
125 tmp = adc_infos[i].value;
130 /************ boolean sensors */
133 struct sensor_filter {
144 * voltage div mapping:
147 static struct sensor_filter sensor_filter[SENSOR_MAX] = {
148 [S_CAP1] = { 1, 0, 0, 1, 0, 0 }, /* 0 */
149 [S_CAP2] = { 1, 0, 0, 1, 0, 0 }, /* 1 */
150 [S_CAP3] = { 1, 0, 0, 1, 0, 0 }, /* 2 */
151 [S_CAP4] = { 1, 0, 0, 1, 0, 0 }, /* 3 */
152 [S_CAP5] = { 1, 0, 0, 1, 0, 0 }, /* 4 */
153 [S_CAP6] = { 1, 0, 0, 1, 0, 0 }, /* 5 */
154 [S_CAP7] = { 1, 0, 0, 1, 0, 0 }, /* 6 */
155 [S_CAP8] = { 1, 0, 0, 1, 0, 0 }, /* 7 */
156 [S_RESERVED1] = { 10, 0, 3, 7, 0, 0 }, /* 8 */
157 [S_RESERVED2] = { 10, 0, 3, 7, 0, 0 }, /* 9 */
158 [S_RESERVED3] = { 1, 0, 0, 1, 0, 0 }, /* 10 */
159 [S_RESERVED4] = { 1, 0, 0, 1, 0, 0 }, /* 11 */
160 [S_RESERVED5] = { 1, 0, 0, 1, 0, 0 }, /* 12 */
161 [S_RESERVED6] = { 1, 0, 0, 1, 0, 0 }, /* 13 */
162 [S_RESERVED7] = { 1, 0, 0, 1, 0, 0 }, /* 14 */
163 [S_RESERVED8] = { 1, 0, 0, 1, 0, 0 }, /* 15 */
166 /* value of filtered sensors */
167 static uint16_t sensor_filtered = 0;
170 * 0-3: PORTK 2->5 (cap1 -> cap4) (adc10 -> adc13)
171 * 4-5: PORTL 0->1 (cap5 -> cap6)
172 * 6-7: PORTE 3->4 (cap7 -> cap8)
176 uint16_t sensor_get_all(void)
181 tmp = sensor_filtered;
186 uint8_t sensor_get(uint8_t i)
188 uint16_t tmp = sensor_get_all();
189 return (tmp & _BV(i));
192 /* get the physical value of pins */
193 static uint16_t sensor_read(void)
196 tmp |= (uint16_t)((PINK & (_BV(2)|_BV(3)|_BV(4)|_BV(5))) >> 2) << 0;
197 tmp |= (uint16_t)((PINL & (_BV(0)|_BV(1))) >> 0) << 4;
198 tmp |= (uint16_t)((PINE & (_BV(3)|_BV(4))) >> 3) << 6;
199 /* add reserved sensors here */
203 /* called every 10 ms, see init below */
204 static void do_boolean_sensors(void *dummy)
208 uint16_t sensor = sensor_read();
211 for (i=0; i<SENSOR_MAX; i++) {
212 if ((1 << i) & sensor) {
213 if (sensor_filter[i].cpt < sensor_filter[i].filter)
214 sensor_filter[i].cpt++;
215 if (sensor_filter[i].cpt >= sensor_filter[i].thres_on)
216 sensor_filter[i].prev = 1;
219 if (sensor_filter[i].cpt > 0)
220 sensor_filter[i].cpt--;
221 if (sensor_filter[i].cpt <= sensor_filter[i].thres_off)
222 sensor_filter[i].prev = 0;
225 if (sensor_filter[i].prev) {
230 sensor_filtered = tmp;
236 /************ global sensor init */
237 #define BACKGROUND_ADC 0
239 /* called every 10 ms, see init below */
240 static void do_sensors(void *dummy)
244 do_boolean_sensors(NULL);
247 void sensor_init(void)
251 adc_register_event(adc_event);
253 scheduler_add_periodical_event_priority(do_sensors, NULL,
254 10000L / SCHEDULER_UNIT,