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: i2c_protocol.c,v 1.8 2009-11-08 17:24:33 zer0 Exp $
25 #include <aversive/pgmspace.h>
26 #include <aversive/wait.h>
27 #include <aversive/error.h>
33 #include <clock_time.h>
37 #include <control_system_manager.h>
38 #include <trajectory_manager.h>
39 #include <vect_base.h>
42 #include <obstacle_avoidance.h>
43 #include <blocking_detection_manager.h>
44 #include <robot_system.h>
45 #include <position_manager.h>
49 #include <parse_string.h>
50 #include <parse_num.h>
52 #include "../common/i2c_commands.h"
55 #include "i2c_protocol.h"
60 #define I2C_STATE_MAX 4
62 #define I2C_TIMEOUT 100 /* ms */
63 #define I2C_MAX_ERRORS 40
65 static volatile uint8_t i2c_poll_num = 0;
66 static volatile uint8_t i2c_state = 0;
67 static volatile uint16_t i2c_errors = 0;
69 #define OP_READY 0 /* no i2c op running */
70 #define OP_POLL 1 /* a user command is running */
71 #define OP_CMD 2 /* a polling (req / ans) is running */
73 static volatile uint8_t running_op = OP_READY;
77 static uint8_t error_log = 0;
79 static int8_t i2c_req_cobboard_status(void);
80 static int8_t i2c_req_ballboard_status(void);
84 /* used for commands */
85 uint8_t command_buf[I2C_SEND_BUFFER_SIZE];
86 volatile int8_t command_dest=-1;
87 volatile uint8_t command_size=0;
89 #define I2C_ERROR(args...) do { \
90 if (error_log < I2C_MAX_LOG) { \
91 ERROR(E_USER_I2C_PROTO, args); \
93 if (error_log == I2C_MAX_LOG) { \
94 ERROR(E_USER_I2C_PROTO, \
95 "i2c logs are now warnings"); \
99 WARNING(E_USER_I2C_PROTO, args); \
102 void i2c_protocol_init(void)
106 void i2c_protocol_debug(void)
111 printf_P(PSTR("I2C protocol debug infos:\r\n"));
112 printf_P(PSTR(" i2c_state=%d\r\n"), i2c_state);
113 printf_P(PSTR(" i2c_errors=%d\r\n"), i2c_errors);
114 printf_P(PSTR(" running_op=%d\r\n"), running_op);
115 printf_P(PSTR(" command_size=%d\r\n"), command_size);
116 printf_P(PSTR(" command_dest=%d\r\n"), command_dest);
117 printf_P(PSTR(" i2c_status=%x\r\n"), i2c_status());
122 static void i2cproto_next_state(uint8_t inc)
125 if (i2c_state >= I2C_STATE_MAX) {
131 void i2cproto_wait_update(void)
134 poll_num = i2c_poll_num;
135 WAIT_COND_OR_TIMEOUT((i2c_poll_num-poll_num) > 1, 150);
138 /* called periodically : the goal of this 'thread' is to send requests
139 * and read answers on i2c slaves in the correct order. */
140 void i2c_poll_slaves(void *dummy)
144 static uint8_t a = 0;
150 /* already running */
152 if (running_op != OP_READY) {
157 /* if a command is ready to be sent, so send it */
160 err = i2c_send(command_dest, command_buf, command_size,
168 /* no command, so do the polling */
169 running_op = OP_POLL;
173 /* poll status of cobboard */
174 #define I2C_REQ_COBBOARD 0
175 case I2C_REQ_COBBOARD:
176 if ((err = i2c_req_cobboard_status()))
180 #define I2C_ANS_COBBOARD 1
181 case I2C_ANS_COBBOARD:
182 if ((err = i2c_recv(I2C_COBBOARD_ADDR,
183 sizeof(struct i2c_ans_cobboard_status),
188 /* poll status of ballboard */
189 #define I2C_REQ_BALLBOARD 2
190 case I2C_REQ_BALLBOARD:
191 if ((err = i2c_req_ballboard_status()))
195 #define I2C_ANS_BALLBOARD 3
196 case I2C_ANS_BALLBOARD:
197 if ((err = i2c_recv(I2C_BALLBOARD_ADDR,
198 sizeof(struct i2c_ans_ballboard_status),
203 /* nothing, go to the first request */
206 running_op = OP_READY;
213 running_op = OP_READY;
216 if (i2c_errors > I2C_MAX_ERRORS) {
217 I2C_ERROR("I2C send is_cmd=%d proto_state=%d "
218 "err=%d i2c_status=%x", !!command_size, i2c_state, err, i2c_status());
224 /* called when the xmit is finished */
225 void i2c_sendevent(int8_t size)
228 if (running_op == OP_POLL) {
229 i2cproto_next_state(1);
236 NOTICE(E_USER_I2C_PROTO, "send error state=%d size=%d "
237 "op=%d", i2c_state, size, running_op);
238 if (i2c_errors > I2C_MAX_ERRORS) {
239 I2C_ERROR("I2C error, slave not ready");
244 if (running_op == OP_POLL) {
245 /* skip associated answer */
246 i2cproto_next_state(2);
249 running_op = OP_READY;
252 /* called rx event */
253 void i2c_recvevent(uint8_t * buf, int8_t size)
255 if (running_op == OP_POLL)
256 i2cproto_next_state(1);
258 /* recv is only trigged after a poll */
259 running_op = OP_READY;
267 case I2C_ANS_COBBOARD_STATUS: {
268 struct i2c_ans_cobboard_status * ans =
269 (struct i2c_ans_cobboard_status *)buf;
271 if (size != sizeof (*ans))
275 cobboard.mode = ans->mode;
276 cobboard.status = ans->status;
277 cobboard.cob_count = ans->cob_count;
278 cobboard.left_cobroller_speed = ans->left_cobroller_speed;
279 cs_set_consign(&mainboard.left_cobroller.cs, cobboard.left_cobroller_speed);
280 cobboard.right_cobroller_speed = ans->right_cobroller_speed;
281 cs_set_consign(&mainboard.right_cobroller.cs, cobboard.right_cobroller_speed);
286 case I2C_ANS_BALLBOARD_STATUS: {
288 struct i2c_ans_ballboard_status * ans =
289 (struct i2c_ans_ballboard_status *)buf;
291 if (size != sizeof (*ans))
293 ballboard.mode = ans->mode;
294 ballboard.status = ans->status;
295 ballboard.ball_count = ans->ball_count;
297 if (tmp != I2C_COB_NONE)
298 ballboard.lcob = tmp;
300 if (tmp != I2C_COB_NONE)
301 ballboard.rcob = tmp;
312 NOTICE(E_USER_I2C_PROTO, "recv error state=%d op=%d",
313 i2c_state, running_op);
314 if (i2c_errors > I2C_MAX_ERRORS) {
315 I2C_ERROR("I2C error, slave not ready");
321 void i2c_recvbyteevent(uint8_t hwstatus, uint8_t i, uint8_t c)
324 #endif /* !HOST_VERSION */
326 /* ******** ******** ******** ******** */
328 /* ******** ******** ******** ******** */
332 i2c_send_command(uint8_t addr, uint8_t * buf, uint8_t size)
335 return robotsim_i2c(addr, buf, size);
338 microseconds us = time_get_us2();
340 while ((time_get_us2() - us) < (I2C_TIMEOUT)*1000L) {
342 if (command_size == 0) {
343 memcpy(command_buf, buf, size);
351 /* this should not happen... except if we are called from an
352 * interrupt context, but it's forbidden */
353 I2C_ERROR("I2C command send failed");
359 static int8_t i2c_req_cobboard_status(void)
361 struct i2c_req_cobboard_status buf;
364 buf.hdr.cmd = I2C_REQ_COBBOARD_STATUS;
365 buf.lspickle = cobboard.lspickle;
366 buf.rspickle = cobboard.rspickle;
367 err = i2c_send(I2C_COBBOARD_ADDR, (uint8_t*)&buf,
368 sizeof(buf), I2C_CTRL_GENERIC);
373 static int8_t i2c_req_ballboard_status(void)
375 struct i2c_req_ballboard_status buf;
377 buf.hdr.cmd = I2C_REQ_BALLBOARD_STATUS;
378 return i2c_send(I2C_BALLBOARD_ADDR, (uint8_t*)&buf,
379 sizeof(buf), I2C_CTRL_GENERIC);
381 #endif /* !HOST_VERSION */
383 int8_t i2c_set_color(uint8_t addr, uint8_t color)
385 struct i2c_cmd_generic_color buf;
387 if (addr == I2C_BALLBOARD_ADDR)
388 return 0; /* XXX disabled for now */
389 buf.hdr.cmd = I2C_CMD_GENERIC_SET_COLOR;
391 return i2c_send_command(addr, (uint8_t*)&buf, sizeof(buf));
394 int8_t i2c_led_control(uint8_t addr, uint8_t led, uint8_t state)
396 struct i2c_cmd_led_control buf;
397 buf.hdr.cmd = I2C_CMD_GENERIC_LED_CONTROL;
400 return i2c_send_command(addr, (uint8_t*)&buf, sizeof(buf));
403 int8_t i2c_cobboard_set_mode(uint8_t mode)
406 return robotsim_i2c_cobboard_set_mode(mode);
408 struct i2c_cmd_cobboard_set_mode buf;
409 buf.hdr.cmd = I2C_CMD_COBBOARD_SET_MODE;
411 return i2c_send_command(I2C_COBBOARD_ADDR, (uint8_t*)&buf, sizeof(buf));
415 static int8_t i2c_cobboard_set_spickle(uint8_t side, uint8_t flags)
417 if (side == I2C_LEFT_SIDE)
418 cobboard.lspickle = flags;
420 cobboard.rspickle = flags;
424 int8_t i2c_cobboard_pack(uint8_t side)
426 return i2c_cobboard_set_spickle(side, 0);
429 int8_t i2c_cobboard_autoharvest(uint8_t side)
431 return i2c_cobboard_set_spickle(side,
432 I2C_COBBOARD_SPK_DEPLOY |
433 I2C_COBBOARD_SPK_AUTOHARVEST);
436 int8_t i2c_cobboard_deploy(uint8_t side)
438 return i2c_cobboard_set_spickle(side, I2C_COBBOARD_SPK_DEPLOY);
441 int8_t i2c_ballboard_set_mode(uint8_t mode)
443 struct i2c_cmd_ballboard_set_mode buf;
444 buf.hdr.cmd = I2C_CMD_BALLBOARD_SET_MODE;
446 return i2c_send_command(I2C_BALLBOARD_ADDR, (uint8_t*)&buf, sizeof(buf));