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: state.c,v 1.5 2009-11-08 17:25:00 zer0 Exp $
26 #include <aversive/wait.h>
27 #include <aversive/error.h>
32 #include <encoders_spi.h>
35 #include <scheduler.h>
36 #include <clock_time.h>
40 #include <control_system_manager.h>
41 #include <blocking_detection_manager.h>
46 #include "../common/i2c_commands.h"
55 #define STMCH_DEBUG(args...) DEBUG(E_USER_ST_MACH, args)
56 #define STMCH_NOTICE(args...) NOTICE(E_USER_ST_MACH, args)
57 #define STMCH_ERROR(args...) ERROR(E_USER_ST_MACH, args)
59 static struct vt100 local_vt100;
60 static volatile uint8_t state_mode, lspickle, rspickle;
61 static volatile uint8_t state_status;
62 static volatile uint8_t state_i2c_ignore = 0;
63 static uint8_t cob_count;
66 #define INIT(mode) ((mode) == I2C_COBBOARD_MODE_INIT)
67 #define HARVEST(mode) ((mode) == I2C_COBBOARD_MODE_HARVEST)
68 #define EJECT(mode) ((mode) == I2C_COBBOARD_MODE_EJECT)
69 #define KICKSTAND_UP(mode) ((mode) == I2C_COBBOARD_MODE_KICKSTAND_UP)
70 #define KICKSTAND_DOWN(mode) ((mode) == I2C_COBBOARD_MODE_KICKSTAND_DOWN)
72 uint8_t state_debug = 0;
73 static uint8_t state_cob_partial = 0;
75 uint8_t state_get_cob_count(void)
80 static void state_debug_wait_key_pressed(void)
84 printf_P(PSTR("press a key\r\n"));
85 while(!cmdline_keypressed());
88 /* return true if the cob is correctly inside */
89 static uint8_t state_cob_inside(void)
91 return sensor_get(S_COB_INSIDE_L) &&
92 sensor_get(S_COB_INSIDE_R);
95 /* return true if there is no cob correctly inside */
96 static uint8_t state_no_cob_inside(void)
98 return !sensor_get(S_COB_INSIDE_L) &&
99 !sensor_get(S_COB_INSIDE_R);
102 static uint8_t state_cob_inside_enhanced(void)
104 if (sensor_get(S_COB_INSIDE_L))
105 state_cob_partial = 1;
106 if (sensor_get(S_COB_INSIDE_R))
107 state_cob_partial = 1;
108 return state_cob_inside();
111 static uint8_t state_spicklemode_deployed(uint8_t side)
113 if (side == I2C_LEFT_SIDE)
114 return lspickle & I2C_COBBOARD_SPK_DEPLOY;
116 return rspickle & I2C_COBBOARD_SPK_DEPLOY;
119 static uint8_t state_spicklemode_autoharvest(uint8_t side)
121 if (side == I2C_LEFT_SIDE)
122 return lspickle & I2C_COBBOARD_SPK_AUTOHARVEST;
124 return rspickle & I2C_COBBOARD_SPK_AUTOHARVEST;
127 static uint8_t state_spicklemode_nomove(uint8_t side)
129 if (side == I2C_LEFT_SIDE)
130 return lspickle & I2C_COBBOARD_SPK_NO_MOVE;
132 return rspickle & I2C_COBBOARD_SPK_NO_MOVE;
135 uint8_t state_spicklemode_weak(uint8_t side)
137 if (side == I2C_LEFT_SIDE)
138 return lspickle & I2C_COBBOARD_SPK_WEAK;
140 return rspickle & I2C_COBBOARD_SPK_WEAK;
143 /* pack/deploy spickles depending on mode */
144 static void spickle_prepare(uint8_t side)
146 /* pack spickle if we are not in harvest mode */
147 if (!HARVEST(state_mode))
150 /* we do nothing in mode no out */
151 if (state_spicklemode_nomove(side))
154 if (state_spicklemode_deployed(side))
155 spickle_deploy(side);
160 void state_set_spickle(uint8_t side, uint8_t flags)
162 if (side == I2C_LEFT_SIDE) {
163 /* the PACK command preempts the current action if the
165 if (lspickle != 0 && flags == 0 &&
166 state_status != I2C_COBBOARD_STATUS_LBUSY)
167 spickle_prepare(I2C_LEFT_SIDE);
171 /* the PACK command preempts the current action if the
173 if (rspickle != 0 && flags == 0 &&
174 state_status != I2C_COBBOARD_STATUS_RBUSY)
175 spickle_prepare(I2C_RIGHT_SIDE);
180 /* set a new state, return 0 on success */
181 int8_t state_set_mode(uint8_t mode)
184 STMCH_DEBUG("%s(): mode=%x", __FUNCTION__, mode);
188 void state_set_i2c_ignore(uint8_t val)
190 state_i2c_ignore = val;
193 uint8_t state_get_i2c_ignore(void)
195 return state_i2c_ignore;
198 /* check that state is the one in parameter and that state did not
200 static uint8_t state_want_exit(void)
204 /* force quit when CTRL-C is typed */
205 c = cmdline_getchar();
208 if (vt100_parser(&local_vt100, c) == KEY_CTRL_C)
210 printf_P(PSTR("CTRL-C\r\n"));
214 uint8_t state_get_mode(void)
219 uint8_t state_get_status(void)
224 /* harvest cobs from area */
225 static void state_do_harvest(uint8_t side)
229 /* if there is no cob, return */
230 if (cob_falling_edge(side) == 0)
233 if (side == I2C_LEFT_SIDE)
234 state_status = I2C_COBBOARD_STATUS_LBUSY;
236 state_status = I2C_COBBOARD_STATUS_RBUSY;
238 STMCH_DEBUG("start");
246 /* check that cob is correctly in place */
247 state_cob_partial = 0;
248 if (WAIT_COND_OR_TIMEOUT(state_cob_inside_enhanced(), 750) == 0) {
249 if (state_no_cob_inside() && state_cob_partial == 0) {
250 STMCH_DEBUG("no cob");
253 else if (state_no_cob_inside() && state_cob_partial == 1)
256 STMCH_DEBUG("bad cob state");
258 /* while cob is not correctly placed try to extract
259 * it as much as we can */
260 while (state_cob_inside() == 0 &&
261 state_no_cob_inside() == 0) {
264 cobroller_reverse(side);
276 if (EJECT(state_mode))
280 STMCH_DEBUG("cob removed");
281 if (state_no_cob_inside()) {
282 STMCH_DEBUG("no cob");
288 /* cob is inside, switch off roller */
292 state_debug_wait_key_pressed();
294 /* last cob, nothing to do */
298 /* redeploy the spickle if there is a black cob */
299 if (!state_spicklemode_nomove(side))
300 spickle_deploy(side);
301 state_debug_wait_key_pressed();
303 /* let the loaded cobs go */
307 state_debug_wait_key_pressed();
313 while (WAIT_COND_OR_TIMEOUT(shovel_is_up(), 600) == 0) {
314 STMCH_DEBUG("shovel blocked");
320 /* if eject command is received, force exit */
321 if (EJECT(state_mode))
329 /* bad state, try to eject to cobs */
334 while (WAIT_COND_OR_TIMEOUT(shovel_is_mid(), 600) == 0) {
335 STMCH_DEBUG("ejecting cobs");
339 if (state_no_cob_inside()) {
348 state_debug_wait_key_pressed();
350 /* close the carry servos */
354 state_debug_wait_key_pressed();
358 while (WAIT_COND_OR_TIMEOUT(shovel_is_down(), 400) == 0) {
359 STMCH_DEBUG("shovel blocked");
369 static void state_do_eject(void)
371 state_status = I2C_COBBOARD_STATUS_EJECT;
382 /* main state machine */
383 void state_machine(void)
385 while (state_want_exit() == 0) {
387 state_status = I2C_COBBOARD_STATUS_READY;
390 if (INIT(state_mode)) {
392 state_mode = I2C_COBBOARD_MODE_HARVEST;
395 if (HARVEST(state_mode)) {
396 /* init for each loop */
401 /* pack/deply spickles, enable/disable roller */
402 cobroller_off(I2C_LEFT_SIDE);
403 cobroller_off(I2C_RIGHT_SIDE);
404 spickle_prepare(I2C_LEFT_SIDE);
405 spickle_prepare(I2C_RIGHT_SIDE);
407 /* harvest if not many cobs */
409 if (state_spicklemode_deployed(I2C_LEFT_SIDE) &&
410 state_spicklemode_autoharvest(I2C_LEFT_SIDE))
411 state_do_harvest(I2C_LEFT_SIDE);
412 if (state_spicklemode_deployed(I2C_RIGHT_SIDE) &&
413 state_spicklemode_autoharvest(I2C_RIGHT_SIDE))
414 state_do_harvest(I2C_RIGHT_SIDE);
418 /* help to climb the hill */
419 if (KICKSTAND_UP(state_mode)) {
420 state_status = I2C_COBBOARD_STATUS_KICKSTAND_UP;
423 shovel_kickstand_up();
426 if (KICKSTAND_DOWN(state_mode)) {
427 state_status = I2C_COBBOARD_STATUS_KICKSTAND_DOWN;
430 shovel_kickstand_down();
434 if (EJECT(state_mode)) {
435 state_mode = I2C_COBBOARD_MODE_HARVEST;
439 state_status = I2C_COBBOARD_STATUS_OFF;
442 void state_init(void)
444 vt100_init(&local_vt100);
448 spickle_pack(I2C_LEFT_SIDE);
449 spickle_pack(I2C_RIGHT_SIDE);
452 state_status = I2C_COBBOARD_STATUS_OFF;