altos: struct ao_log_mega doesn't have a ground temp value
[fw/altos] / src / core / ao_radio_cmac_cmd.c
1 /*
2  * Copyright © 2012 Keith Packard <keithp@keithp.com>
3  *
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.
7  *
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.
12  *
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.
16  */
17
18 #include <ao.h>
19 #include <ao_radio_cmac_cmd.h>
20 #include <ao_radio_cmac.h>
21
22 static __xdata uint8_t cmac_data[AO_CMAC_MAX_LEN];
23
24 static uint8_t
25 getnibble(void)
26 {
27         int8_t  b;
28
29         b = ao_cmd_hexchar(getchar());
30         if (b < 0) {
31                 ao_cmd_status = ao_cmd_lex_error;
32                 return 0;
33         }
34         return (uint8_t) b;
35 }
36
37 static uint8_t
38 getbyte(void)
39 {
40         uint8_t b;
41         b = getnibble() << 4;
42         b |= getnibble();
43         return b;
44 }
45         
46 static void
47 radio_cmac_send_cmd(void) __reentrant
48 {
49         uint8_t i;
50         uint8_t len;
51
52         ao_cmd_decimal();
53         if (ao_cmd_status != ao_cmd_success)
54                 return;
55         len = ao_cmd_lex_i;
56         if (len > AO_CMAC_MAX_LEN) {
57                 ao_cmd_status = ao_cmd_syntax_error;
58                 return;
59         }
60         flush();
61         len = ao_cmd_lex_i;
62         for (i = 0; i < len; i++) {
63                 cmac_data[i] = getbyte();
64                 if (ao_cmd_status != ao_cmd_success)
65                         return;
66         }
67         ao_radio_cmac_send(cmac_data, len);
68 }
69
70 static void
71 radio_cmac_recv_cmd(void) __reentrant
72 {
73         uint8_t         len, i;
74         uint16_t        timeout;
75
76         ao_cmd_decimal();
77         if (ao_cmd_status != ao_cmd_success)
78                 return;
79         len = ao_cmd_lex_i;
80         ao_cmd_decimal();
81         if (ao_cmd_status != ao_cmd_success)
82                 return;
83         timeout = AO_MS_TO_TICKS(ao_cmd_lex_i);
84         i = ao_radio_cmac_recv(cmac_data, len, timeout);
85         if (i == AO_RADIO_CMAC_OK) {
86                 printf ("PACKET ");
87                 for (i = 0; i < len; i++)
88                         printf("%02x", cmac_data[i]);
89                 printf (" %d\n", ao_radio_cmac_rssi);
90         } else
91                 printf ("ERROR %d %d\n", i, ao_radio_cmac_rssi);
92 }
93
94 static __code struct ao_cmds ao_radio_cmac_cmds[] = {
95         { radio_cmac_send_cmd,  "s <length>\0Send AES-CMAC packet. Bytes to send follow on next line" },
96         { radio_cmac_recv_cmd,  "S <length> <timeout>\0Receive AES-CMAC packet. Timeout in ms" },
97         { 0, NULL },
98 };
99
100 void
101 ao_radio_cmac_cmd_init(void)
102 {
103         ao_cmd_register(&ao_radio_cmac_cmds[0]);
104 }