-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFCRF24Protocol.cpp
446 lines (399 loc) · 8.81 KB
/
FCRF24Protocol.cpp
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
#include "FCRF24Protocol.h"
void FCRF24Protocol::init(String name, int ce, int csn)
{
nodeName = name;
nodeAddress = 0;
validAddress = 0;
broadcastName = "\xFFNode";
fullAddress[0]=0x00;
fullAddress[1]='N';
fullAddress[2]='o';
fullAddress[3]='d';
fullAddress[4]='e';
fullAddress[5]='\0';
hasNeighborhood = false;
for (int j=0; j<255; j++)
{
routeKnownNode[j] = 0;
routeNextHop[j] = 0;
// routePathLength[j] = 0;
}
gwNextHopNode = 0;
gwNHopsToGw = 0;
rf24 = new RF24(ce,csn);
rf24->begin();
rf24->setAutoAck(1);
rf24->setRetries(5,15);
rf24->openReadingPipe(1, fullAddress);
byte address[6];
broadcastName.getBytes(address, 6);
rf24->openReadingPipe(2, address);
randomSeed(analogRead(0));
}
void FCRF24Protocol::sendCommandGeneric ( char* message )
{
byte* bName;
bName = String2Byte(broadcastName);
rf24->openWritingPipe(bName);
rf24->stopListening();
rf24->write(message, 32, 1);
rf24->startListening();
delete bName;
}
uint8_t FCRF24Protocol::dataAvailable()
{
uint8_t pipeNumber;
rf24->available(&pipeNumber);
return pipeNumber;
}
void FCRF24Protocol::sendManagementCommand(unsigned char command, String payload)
{
byte* bName;
bName = String2Byte(broadcastName);
rf24->openWritingPipe(bName);
rf24->stopListening();
switch(command)
{
case REQ_NGH_ANTENNA:
sendRequestNghAntenna();
break;
case REQ_ADDR:
sendRequestAddress();
break;
case TRACE_ROUTE:
sendTraceRoute();
break;
}
delete bName;
}
/*
* byte 0 : command type
* byte 1 : from address (if available)
* byte 2-21 : 0x00
* byte 22-31 : nodeName right aligned
*/
void FCRF24Protocol::sendRequestNghAntenna()
{
char* command = getEmptyBuffer();
int l = nodeName.length();
for (int j=0;j<l;j++)
command[32-l+j]=nodeName[j];
command[0] = REQ_NGH_ANTENNA;
if (nodeAddress > 0)
command[1] = nodeAddress;
rf24->write(command, 32, 1);
rf24->startListening();
delete command;
}
/*
* byte 0 : command type
* byte 1-4: random id
* byte 5-21 : 0x00
* byte 22-31 : nodeName rigth aligned
*/
void FCRF24Protocol::sendRequestAddress()
{
char* command = getEmptyBuffer();
int l = nodeName.length();
for (int j=0; j<l;j++)
command[32-l+j] = nodeName[j];
command[0] = REQ_ADDR;
long randomId = random();
lastRandomId = randomId;
command[1]= (uint8_t)((randomId >> 24) & 0xFF);
command[2]= (uint8_t)((randomId >> 16) & 0xFF);
command[3]= (uint8_t)((randomId >> 8) & 0xFF);
command[4]= (uint8_t)( randomId & 0xFF);
rf24->write(command, 32, 1);
rf24->startListening();
delete command;
}
/*
* Byte 0: command type
* Byte 1: from address
* Byte 2: origin address
* Byte 3: destination address
* Byte 4: hop address
* Byte 5-21: 0x00
* Byte 22-31: nodeName
*
*/
void FCRF24Protocol::sendTraceRoute(uint8_t destinationAddress)
{
if (validAddress && nodeAddress>0)
{
char* command = getEmptyBuffer();
command[0] = TRACE_ROUTE;
command[1] = nodeAddress;
command[2] = nodeAddress;
command[3] = destinationAddress;
command[4] = gwNextHopNode;
int l = nodeName.length();
for (int j=0;j<l;j++)
command[32-l+j]=nodeName[j];
sendCommandGeneric(command);
delete command;
}
}
void FCRF24Protocol::receiveManagementCommand ( )
{
char command[32];
rf24->read(command, 32);
Serial.print("Answer command: ");
for (int j=0; j<32; j++)
{;
Serial.print(command[j], HEX);
Serial.print("|");
}
Serial.println();
switch(command[0])
{
case ANS_NGH_ANTENNA:
receiveAnswerNghAntenna(command);
break;
case ANS_ADDR:
receiveAnswerAddress(command);
break;
case REQ_NGH_ANTENNA:
receiveRequestNghAntenna(command);
break;
case REQ_ADDR:
receiveRequestAddress(command);
break;
case TRACE_ROUTE:
receiveTraceRoute(command);
break;
}
}
/*
* Byte 0: command type
* Byte 1: from address
* Byte 2: to address
* Byte 3: number of hops = 1 : direct connection
* Byte 4-29: 0x00
* Byte 30: hops to gw (0 = no route to gw)
* Byte 31: node address
*
*/
void FCRF24Protocol::receiveRequestNghAntenna ( char* command )
{
if (validAddress)
{
char* answer = getEmptyBuffer();
answer[0]=ANS_NGH_ANTENNA;
answer[1]=nodeAddress;
answer[2]=0;
answer[3]=1;
answer[30]=gwNHopsToGw;
answer[31]=nodeAddress;
sendCommandGeneric(answer);
delete answer;
// if the sender address is valid all routing information
// need to be updated
if (command[1]!='\0')
{
routeKnownNode[command[1]] = 1;
// routePathLength[command[1]] = 1;
routeNextHop[command[1]] = command[1];
}
}
}
void FCRF24Protocol::receiveAnswerNghAntenna ( char* command )
{
routeKnownNode[command[31]] = 1;
routeNextHop[command[31]] = command[31];
// routePathLength[command[31]] = command[3];
if ((command[30]+1)<gwNHopsToGw)
{
gwNHopsToGw = command[30]+1;
gwNextHopNode = command[31];
}
hasNeighborhood = true;
}
/*
* Byte 0: command type
* Byte 1-4: random packet id
* Byte 5: address
* Byte 6-21: 0x00
* Byte 22-31: target nodeName
*
*/
void FCRF24Protocol::receiveRequestAddress ( char* command )
{
/*
* The command is processed if and only if the node already has an address
*/
if (validAddress && nodeAddress>0)
{
long randomId = (command[1] << 24) + (command[2] << 16) + (command[3] << 8) + command[4];
bool found = false;
int i = 0;
while (i < MaxAddressRequests && !found)
{
if (randomIDs[i] == randomId) found = true;
i++;
}
if (!found)
{
// look for the first 0 entry in the randomIDs
found = false;
int i = 0;
while (i<MaxAddressRequests && !found)
if (randomIDs[i]==0)
found = true;
else
i++;
if (found)
{
randomIDs[i] = randomId;
sendCommandGeneric(command);
}
}
}
else
{
// this is the GW / DHCP
#if defined _GW
#endif
}
}
void FCRF24Protocol::receiveAnswerAddress ( char* command )
{
/*
* If this node is the target update data
* If this is not the target node, then delete the randomId from the
* list and forward the request
* If the randomId is not in the list stop the forwarding
*/
if (!validAddress)
{
bool found = true;
int l = nodeName.length();
int i = l;
while(found && i>0)
{
if (nodeName[i-1] != command[31-l+i])
found = false;
else
i--;
}
if (found)
{
nodeAddress = command[5];
validAddress = true;
fullAddress[0] = command[5];
rf24->closeReadingPipe(1);
rf24->openReadingPipe(1, fullAddress);
Serial.print("Address: ");
Serial.println(nodeAddress);
}
}
else
{
long randomId = (command[1] << 24) + (command[2] << 16) + (command[3] << 8) + command[4];
if (nodeAddress > 0 && lastRandomId != randomId) // GW never forward request/answer address and this node message
{
bool found = false;
int i = 0;
while (i < MaxAddressRequests && !found)
{
if (randomIDs[i] == randomId)
{
found = true;
randomIDs[i] = 0;
sendCommandGeneric(command);
}
i++;
}
}
}
}
void FCRF24Protocol::receiveTraceRoute ( char* command )
{
if (validAddress && nodeAddress >0)
{
if (nodeAddress == command[4])
{
routeNextHop[command[2]]=command[1];
command[1] = nodeAddress;
command[4] = gwNextHopNode;
sendCommandGeneric(command);
}
}
}
/*
*
* ********************** DATA TRASMISSION
*
*/
/*
* Byte 0: message type
* Byte 1: from address
* Byte 2: to address
* Byte 3: reserved
* byte 4-31: data
*/
void FCRF24Protocol::sendPacket ( uint8_t toAddress, char* data, bool ack, bool cmd )
{
char* message = getEmptyBuffer();
fullAddress[0] = gwNextHopNode;
rf24->openWritingPipe(fullAddress);
fullAddress[0] = nodeAddress;
// Data packet type
if (cmd) message[0] = CMD;
if (ack) message[0] = DATA_ACK;
if (!ack & !cmd) message[0] = DATA_NOACK;
// Data from
message[1] = nodeAddress;
message[2] = toAddress;
message[3] = 0x00;
for (int i=0;i<28;i++)
message[4+i] = data[i];
rf24->stopListening();
rf24->write(message, 32, 1);
rf24->startListening();
delete message;
}
void FCRF24Protocol::forwardPacket ( char* message )
{
fullAddress[0] = gwNextHopNode;
rf24->openWritingPipe(fullAddress);
fullAddress[0] = nodeAddress;
rf24->stopListening();
rf24->write(message, 32, 1);
rf24->startListening();
}
void FCRF24Protocol::receivePacket (char* data)
{
/*
* If to address is the one of this node the menage address
* else forward address to next hop
*/
char* message = getEmptyBuffer();
rf24->read(message, 32);
message[32] = '\0';
if (message[2]==nodeAddress)
{
Serial.print("Data: ");
for (int j=0;j<=28;j++)
Serial.print(message[4+j]);
Serial.println();
if (data != NULL)
for (int j=0;j<=28;j++)
data[j]=message[4+j];
}
else
{
forwardPacket(message);
}
delete message;
}
// -------------------------------
byte* FCRF24Protocol::String2Byte(String stringa)
{
byte* res = new byte(stringa.length()+1);
for (int j=0; j< stringa.length(); j++)
res[j] = stringa[j];
res[stringa.length()]='\0';
return res;
}