-
Notifications
You must be signed in to change notification settings - Fork 4
/
xbee_handler.c
284 lines (234 loc) · 8.08 KB
/
xbee_handler.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
/*
* Copyright (c) 2010, Regents of the University of California
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of the University of California, Berkeley nor the names
* of its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*
* Firmware for the Biomimetic Millisystems Lab 802.15.4 USB basestation.
*
* by Kevin Peterson
*
* v.00beta
*
* Revisions:
* <AUTHOR DATE COMMENT>
*
* Notes:
*
* At the moment the basestation uses a very stripped down MAC layer
* implementation Inter-PAN communication is not possible and all
* addressing is 16-bit only.
*
* Usage:
* <SAMPLE USAGE>
*/
#include "p33Fxxxx.h"
#include "generic_typedefs.h"
#include "init_default.h"
#include "utils.h"
#include "init.h"
#include "uart.h"
#include "mac_packet.h"
#include "radio.h"
#include "at86rf.h"
#include "payload.h"
#include <stdio.h>
#include "xbee_constants.h"
#include "xbee_handler.h"
//#include "lcd.h"
void xbeeHandleTx(Payload uart_pld){
MacPacket tx_packet;
WordVal dst_addr;
Payload rx_pld;
char test;
//Get destination address from uart_pld package
//Frame ID and options packet are currently ignored for this type of packet...
dst_addr.byte.HB = uart_pld->pld_data[DEST_ADDR_HB_POS - RX_DATA_OFFSET];
dst_addr.byte.LB = uart_pld->pld_data[DEST_ADDR_LB_POS - RX_DATA_OFFSET];
test = dst_addr.byte.LB;
//Create new packet with just the data that needs to be sent by the radio
rx_pld = payCreateEmpty(payGetPayloadLength(uart_pld)-(RX_FRAME_OFFSET-RX_DATA_OFFSET)-PAYLOAD_HEADER_LENGTH-1);
test = payGetPayloadLength(rx_pld);
payAppendData(rx_pld, -PAYLOAD_HEADER_LENGTH,
payGetPayloadLength(rx_pld),
&(uart_pld->pld_data[RX_DATA_OFFSET]));
//Place packet in radio queue for sending
tx_packet = macCreatePacket();
tx_packet->payload = rx_pld;
tx_packet->payload_length = payGetPayloadLength(rx_pld);//rx_pld_len.byte.LB - (RX_FRAME_OFFSET - RX_DATA_OFFSET);
//tx_packet->dest_pan_id = src_pan_id; //Already set when macCreatePacket is called.
tx_packet->dest_addr = dst_addr;
radioEnqueueTxPacket(tx_packet);
}
void xbeeHandleAt(Payload rx_pld)
{
unsigned char frame;
unsigned char length;
//unsigned char test;
//This should really be some sort of dynamic queue to be generalized
unsigned char bytes[10];
//unsigned short int command;
WordVal command;
WordVal data;
length = payGetPayloadLength(rx_pld);
frame = rx_pld->pld_data[0];
//test = rx_pld->pld_data[1];
//test = rx_pld->pld_data[2];
/*
command = rx_pld->pld_data[1];
command = command << 8;
command = command + rx_pld->pld_data[2];
*/
command.byte.HB = rx_pld->pld_data[1];
command.byte.LB = rx_pld->pld_data[2];
switch (command.val)
{
case AT_CHANNEL:
if (length != 3)
{
radioSetChannel(rx_pld->pld_data[3]);
}
if (frame != 0)
{
bytes[0] = radioGetChannel();
xbeeHandleATR(frame, command, bytes, 1);
}
break;
case AT_PAN_ID:
if (length != 3)
{
data.byte.HB = rx_pld->pld_data[3];
data.byte.LB = rx_pld->pld_data[4];
radioSetPanID(data);
}
if (frame != 0)
{
data = radioGetPanID();
bytes[0] = data.byte.HB;
bytes[1] = data.byte.LB;
xbeeHandleATR(frame, command, bytes, 2);
}
break;
case AT_SRC_ADR:
if (length != 3)
{
data.byte.HB = rx_pld->pld_data[3];
data.byte.LB = rx_pld->pld_data[4];
radioSetSrcAddr(data);
}
if (frame != 0)
{
data = radioGetSrcAddr();
bytes[0] = data.byte.HB;
bytes[1] = data.byte.LB;
xbeeHandleATR(frame, command, bytes, 2);
}
break;
case AT_ACK_LAST:
if (frame != 0)
{
bytes[0] = 0;
bytes[1] = phyGetLastAckd();;
xbeeHandleATR(frame, command, bytes, 2);
}
break;
case AT_SNIFFER:
if (length != 3)
atSetPromMode(rx_pld->pld_data[3]); //Put radio in sniffer mode
break;
}
}
//Handle a Rx packet and pass it to the sendUART function
void xbeeHandleRx()
{
MacPacket rx_packet;
unsigned char frame_header[5];
rx_packet = radioDequeueRxPacket();
frame_header[RX_API_POS] = RX_16BIT;
frame_header[RX_SRC_ADR_HB_POS] = rx_packet->src_addr.byte.HB;
frame_header[RX_SRC_ADR_LB_POS] = rx_packet->src_addr.byte.LB;
frame_header[RX_RSSI_POS] = phyReadRSSI();
frame_header[RX_OPTIONS_POS] = 0x00;
CRITICAL_SECTION_START
//Start Byte
while(BusyUART1());
WriteUART1(RX_START);
//Length High Byte
while(BusyUART1());
WriteUART1(0x00);
//Length Low Byte
while(BusyUART1());
WriteUART1(payGetPayloadLength(rx_packet->payload)+FRAME_HEADER_LEN);
sendUART(frame_header, rx_packet->payload->pld_data,payGetPayloadLength(rx_packet->payload));
payDelete(rx_packet->payload);
macDeletePacket(rx_packet);
CRITICAL_SECTION_END
}
//Handle an AT response packet and pass it to the sendUART function
void xbeeHandleATR(unsigned char frame_id, WordVal command, unsigned char *data, unsigned char length)
{
unsigned char frame_header[5];
frame_header[RX_API_POS] = AT_RESPONSE;
frame_header[ATR_FRAME_ID_POS] = frame_id;
frame_header[ATR_COMMAND_HB_POS] = command.byte.HB;
frame_header[ATR_COMMAND_LB_POS] = command.byte.LB;
frame_header[ATR_STATUS_POS] = 0x00;
CRITICAL_SECTION_START
//Start Byte
while(BusyUART1());
WriteUART1(RX_START);
//Length High Byte
while(BusyUART1());
WriteUART1(0x00);
//Length Low Byte
while(BusyUART1());
WriteUART1(length+FRAME_HEADER_LEN);
sendUART(frame_header, data, length);
CRITICAL_SECTION_END
}
//General UART send function
void sendUART(unsigned char *frame_header, unsigned char *data, unsigned char length)
{
int i;
unsigned char checksum=0;
//send frame header
for(i = 0; i < FRAME_HEADER_LEN; i++)
{
checksum += frame_header[i];
while(BusyUART1());
WriteUART1(frame_header[i]);
}
//send payload data
for (i = 0; i < length; i++)
{
checksum += data[i];
while(BusyUART1());
WriteUART1(data[i]);
}
//Send Checksum Data
while(BusyUART1());
WriteUART1(0xFF - checksum);
}