2 * Copyright © 2012 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_radio_spi.h>
20 #include <ao_radio_cmac.h>
22 static __xdata struct ao_radio_spi_reply ao_radio_spi_reply;
24 static __xdata struct ao_radio_spi_request ao_radio_spi_request;
26 static __xdata uint8_t slave_state;
29 ao_radio_slave_low(void)
35 ao_gpio_set(AO_RADIO_SLAVE_INT_PORT, AO_RADIO_SLAVE_INT_BIT, AO_RADIO_SLAVE_INT_PIN, 0);
36 for (i = 0; i < 1000; i++)
42 ao_radio_slave_high(void)
46 ao_gpio_set(AO_RADIO_SLAVE_INT_PORT, AO_RADIO_SLAVE_INT_BIT, AO_RADIO_SLAVE_INT_PIN, 1);
51 ao_radio_slave_spi(void)
53 ao_spi_get_slave(AO_RADIO_SLAVE_BUS);
55 ao_spi_recv(&ao_radio_spi_request,
56 (2 << 13) | sizeof (ao_radio_spi_request),
58 ao_radio_slave_high();
60 switch (ao_radio_spi_request.request) {
61 case AO_RADIO_SPI_RECV:
63 /* XXX monitor CS to interrupt the receive */
65 ao_config.radio_setting = ao_radio_spi_request.setting;
67 ao_radio_spi_reply.status = ao_radio_recv(&ao_radio_spi_reply.payload,
68 ao_radio_spi_request.recv_len,
69 ao_radio_spi_request.timeout);
70 ao_led_off(AO_LED_RX);
71 ao_radio_spi_reply.rssi = 0;
72 ao_spi_send(&ao_radio_spi_reply,
73 AO_RADIO_SPI_REPLY_HEADER_LEN + ao_radio_spi_request.recv_len,
78 case AO_RADIO_SPI_CMAC_RECV:
79 ao_config.radio_setting = ao_radio_spi_request.setting;
81 ao_radio_spi_reply.status = ao_radio_cmac_recv(&ao_radio_spi_reply.payload,
82 ao_radio_spi_request.recv_len,
83 ao_radio_spi_request.timeout);
84 ao_led_off(AO_LED_RX);
85 ao_radio_spi_reply.rssi = ao_radio_cmac_rssi;
86 ao_spi_send(&ao_radio_spi_reply,
87 AO_RADIO_SPI_REPLY_HEADER_LEN + ao_radio_spi_request.recv_len,
92 case AO_RADIO_SPI_SEND:
93 ao_config.radio_setting = ao_radio_spi_request.setting;
95 ao_radio_send(&ao_radio_spi_request.payload,
96 ao_radio_spi_request.len - AO_RADIO_SPI_REQUEST_HEADER_LEN);
97 ao_led_off(AO_LED_TX);
100 case AO_RADIO_SPI_CMAC_SEND:
101 ao_config.radio_setting = ao_radio_spi_request.setting;
102 ao_led_on(AO_LED_TX);
103 ao_radio_cmac_send(&ao_radio_spi_request.payload,
104 ao_radio_spi_request.len - AO_RADIO_SPI_REQUEST_HEADER_LEN);
105 ao_led_off(AO_LED_TX);
108 case AO_RADIO_SPI_CMAC_KEY:
109 ao_xmemcpy(&ao_config.aes_key, ao_radio_spi_request.payload, AO_AES_LEN);
112 case AO_RADIO_SPI_TEST_ON:
113 ao_config.radio_setting = ao_radio_spi_request.setting;
117 case AO_RADIO_SPI_TEST_OFF:
121 ao_radio_slave_low();
125 static __xdata struct ao_task ao_radio_slave_spi_task;
128 ao_radio_slave_init(void)
130 ao_add_task(&ao_radio_slave_spi_task, ao_radio_slave_spi, "radio_spi");
131 ao_enable_output(AO_RADIO_SLAVE_INT_PORT, AO_RADIO_SLAVE_INT_BIT, AO_RADIO_SLAVE_INT_PIN, 0);