2 * Copyright © 2011 Keith Packard <keithp@keithp.com>
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; version 2 of the License.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
19 #include <ao_companion.h>
22 #define ao_spi_slow(b)
23 #define ao_spi_fast(b)
26 #define COMPANION_SELECT() do { \
27 ao_spi_get_bit(AO_COMPANION_CS_PORT, \
28 AO_COMPANION_CS_PIN, \
30 AO_COMPANION_SPI_BUS, \
31 AO_SPI_SPEED_200kHz); \
34 #define COMPANION_DESELECT() do { \
35 ao_spi_put_bit(AO_COMPANION_CS_PORT, \
36 AO_COMPANION_CS_PIN, \
38 AO_COMPANION_SPI_BUS); \
41 __xdata struct ao_companion_command ao_companion_command;
42 __xdata struct ao_companion_setup ao_companion_setup;
44 __xdata uint16_t ao_companion_data[AO_COMPANION_MAX_CHANNELS];
45 __pdata uint8_t ao_companion_running;
46 __xdata uint8_t ao_companion_mutex;
49 ao_companion_send_command(uint8_t command)
51 ao_companion_command.command = command;
52 ao_companion_command.flight_state = ao_flight_state;
53 ao_companion_command.tick = ao_time();
54 ao_companion_command.serial = ao_serial_number;
55 ao_companion_command.flight = ao_flight_number;
56 ao_companion_command.accel = ao_accel;
57 ao_companion_command.speed = ao_speed;
58 ao_companion_command.height = ao_height;
59 ao_companion_command.motor_number = ao_motor_number;
60 ao_spi_send(&ao_companion_command, sizeof (ao_companion_command), AO_COMPANION_SPI_BUS);
64 ao_companion_get_setup(void)
67 ao_companion_send_command(AO_COMPANION_SETUP);
68 ao_spi_recv(&ao_companion_setup, sizeof (ao_companion_setup), AO_COMPANION_SPI_BUS);
70 return ((int16_t) ao_companion_setup.board_id ==
71 (int16_t) (uint16_t) (~ao_companion_setup.board_id_inverse));
75 ao_companion_get_data(void)
78 ao_companion_send_command(AO_COMPANION_FETCH);
79 ao_mutex_get(&ao_companion_mutex);
80 ao_spi_recv(&ao_companion_data, ao_companion_setup.channels * 2, AO_COMPANION_SPI_BUS);
81 ao_mutex_put(&ao_companion_mutex);
86 ao_companion_notify(void)
89 ao_companion_send_command(AO_COMPANION_NOTIFY);
97 while (!ao_flight_number)
98 ao_sleep(&ao_flight_number);
99 for (i = 0; i < 10; i++) {
100 ao_delay(AO_SEC_TO_TICKS(1));
101 if ((ao_companion_running = ao_companion_get_setup()))
104 while (ao_companion_running) {
105 ao_alarm(ao_companion_setup.update_period);
106 if (ao_sleep(DATA_TO_XDATA(&ao_flight_state)))
107 ao_companion_get_data();
109 ao_companion_notify();
115 ao_companion_status(void) __reentrant
118 printf("Companion running: %d\n", ao_companion_running);
119 if (!ao_companion_running)
121 printf("device: %d\n"
122 "update period: %d\n"
125 ao_companion_setup.board_id,
126 ao_companion_setup.update_period,
127 ao_companion_setup.channels);
128 for(i = 0; i < ao_companion_setup.channels; i++)
129 printf(" %5u", ao_companion_data[i]);
133 __code struct ao_cmds ao_companion_cmds[] = {
134 { ao_companion_status, "L\0Companion link status" },
138 static __xdata struct ao_task ao_companion_task;
141 ao_companion_init(void)
143 ao_enable_output(AO_COMPANION_CS_PORT, AO_COMPANION_CS_PIN, AO_COMPANION_CS, 1);
144 ao_cmd_register(&ao_companion_cmds[0]);
145 ao_add_task(&ao_companion_task, ao_companion, "companion");