-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainCoordinatorWithUSBLogs.pde
447 lines (275 loc) · 8.7 KB
/
mainCoordinatorWithUSBLogs.pde
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
447
#include <WaspXBee802.h>
#include <Wasp3G.h>
/* ----- Configuration ----- */
// XBee Module
int MAX_XB_SUBROUTINE_TRY = 3;
int MAX_XB_TRIALS_BEFORE_REBOOT = 3;
char* TIME_BEFORE_NEW_XB_TRIALS = "00:00:00:10"; //1min
// 3G Module
char* APN_NAME = "free";
char* SIM_PIN = "1234";
int MAX_3G_SUBROUTINE_TRY = 3;
int MAX_3G_CONNECTION_TRY = 3;
int MAX_3G_TRIALS_BEFORE_REBOOT = 3;
char* TIME_BEFORE_NEW_3G_TRIALS = "00:00:00:10"; //2min
// Variables
int i, j, frameBufferCount = 0;
uint8_t answer;
char packet[100], frame[100], frameBuffer[6][100];
char* subPacket;
char packetScratched[5][10];
bool done;
char c[1];
bool connect3G() {
// Already connected
if (_3G.showsNetworkMode() > 1) {
USB.println(F("Already connected in 3G."));
return true;
}
_3G.set_APN(APN_NAME);
// Try multiples times to boot 3G module
USB.println(F("Booting 3G module..."));
i = MAX_3G_SUBROUTINE_TRY;
while (_3G.ON() != 1 && i > 0) {
delay(3000);
i--;
USB.println(F("Retry... (3s)"));
}
if (i == 0) {
USB.println(F("Booting failed."));
return false;
}
else if (i > 0) {
USB.println(F("Booted."));
}
// Try multiples times to log in to 3G network
USB.println(F("Setting SIM PIN..."));
i = MAX_3G_SUBROUTINE_TRY;
while (_3G.setPIN(SIM_PIN) != 1 && i > 0) {
delay(3000);
i--;
USB.println(F("Retry... (3s)"));
}
if (i == 0) {
USB.println(F("Setting failed."));
return false;
}
else if (i > 0) {
USB.println(F("PIN set."));
}
// Check multiples times if connection is established
USB.println(F("Checking 3G availability..."));
i = MAX_3G_SUBROUTINE_TRY;
while (_3G.check(180) != 1 && i > 0) {
delay(3000);
i--;
USB.println(F("Retry... (3s)"));
}
if (i == 0) {
USB.println(F("Checking failed."));
return false;
}
else if (i > 0) {
USB.println(F("Availability checked."));
}
return true;
}
bool send3GRequest(char* attributes) {
char request[200];
sprintf(request, "GET /reception%s HTTP/1.1\r\nHost: 31.35.122.165\r\nContent-Length: 0\r\n\r\n", attributes);
// Try multiples times to reach the URL
USB.println(F("Reading URL..."));
i = MAX_3G_SUBROUTINE_TRY;
while (_3G.readURL("31.35.122.165", 80, request) != 1 && i > 0) {
delay(3000);
i--;
USB.println(F("Retry... (3s)"));
}
if (i == 0) {
USB.println(F("Reading failed."));
return false;
}
else if (i > 0) {
USB.println(F("URL read."));
}
return true;
}
// At Waspmote boot
void setup() {
USB.println(F("Booting Waspmote..."));
RTC.ON(); // Needed for sleeping after failure to connect 3G
// ZigBee
// Activation with retries of XBee module
USB.println(F("Booting XBee module..."));
j = MAX_XB_TRIALS_BEFORE_REBOOT;
do {
USB.print(F("Trial "));
USB.print(MAX_XB_TRIALS_BEFORE_REBOOT - j + 1);
USB.print(F("/"));
USB.println(MAX_XB_TRIALS_BEFORE_REBOOT);
i = MAX_XB_SUBROUTINE_TRY;
while (xbee802.ON() != 0 && i > 0) {
delay(10000);
i--;
USB.println(F("Retry... (10s)"));
}
// If not connected, retry some time after
if (i == 0) {
USB.println(F("Trial failed."));
USB.println(F("Sleeping."));
USB.print(F("Wake up in "));
USB.println(TIME_BEFORE_NEW_XB_TRIALS);
PWR.deepSleep(TIME_BEFORE_NEW_XB_TRIALS, RTC_OFFSET, RTC_ALM1_MODE2, ALL_OFF);
USB.println(F("Awake."));
if (intFlag & RTC_INT) {
RTC.clearAlarmFlag();
}
}
j--;
} while (i == 0 && j > 0);
// Reboot if still not connected
if (i == 0) {
USB.println(F("XBee module failed to boot."));
USB.println(F("Need to reboot Waspmote."));
USB.println(F("Rebooting Waspmote..."));
PWR.reboot();
}
// ZigBee-connected
else if (i > 0) {
USB.println(F("XBee module booted."));
}
// 3G
// Activation with retries of 3G module
USB.println(F("Setting up 3G module..."));
j = MAX_3G_TRIALS_BEFORE_REBOOT;
do {
USB.print(F("Trial "));
USB.print(MAX_3G_TRIALS_BEFORE_REBOOT - j + 1);
USB.print(F("/"));
USB.println(MAX_3G_TRIALS_BEFORE_REBOOT);
// Boot and connect 3G
i = MAX_3G_CONNECTION_TRY;
while (!connect3G() && i > 0) {
delay(3000);
i--;
USB.println(F("Retry... (3s)"));
}
// If not connected, retry some time after
if (i == 0) {
USB.println(F("Trial failed."));
USB.println(F("Sleeping."));
USB.print(F("Wake up in "));
USB.println(TIME_BEFORE_NEW_3G_TRIALS);
PWR.deepSleep(TIME_BEFORE_NEW_3G_TRIALS, RTC_OFFSET, RTC_ALM1_MODE2, ALL_OFF);
USB.println(F("Awake."));
if (intFlag & RTC_INT) {
RTC.clearAlarmFlag();
}
}
j--;
} while (i == 0 && j > 0);
// Reboot if still not connected
if (i == 0) {
USB.println(F("3G module failed to boot."));
USB.println(F("Need to reboot Waspmote."));
USB.println(F("Rebooting Waspmote..."));
PWR.reboot();
}
// 3G-connected
else if (i > 0) {
USB.println(F("3G module booted."));
}
// Setup a reboot 24 hours later for security on memory
USB.println(F("Setting up a reboot in 24h."));
RTC.setAlarm1("23:59:00:00", RTC_OFFSET, RTC_ALM1_MODE2);
USB.println(F("Waspmote booted."));
}
/* ----- Main Program ----- */
void loop() {
USB.println(F("----- New loop -----"));
// Wait for incoming transmission
USB.println(F("Listening for incoming transmission... (5s)"));
answer = xbee802.receivePacketTimeout(5000);
// Format received packet
if (answer == 0) {
USB.println(F("Transmission incoming."));
for (i = 0; i < xbee802._length; i++) {
sprintf(c, "%d", xbee802._payload[i]);
strcat(packet, c);
}
USB.print(F("uint8_t* packet received : "));
USB.println(xbee802._payload, DEC);
USB.print(F("char* packet : "));
USB.println(packet);
subPacket = strtok(packet, "/");
i = 0;
while (subPacket != NULL) {
strcpy(packetScratched[i], subPacket);
subPacket = strtok(NULL, "/");
i++;
}
sprintf(frame, "?id=%s&?bat=%s&?tmp=%s&?lum=%s&?hum=%s", packetScratched[0], packetScratched[1], packetScratched[2], packetScratched[3], packetScratched[4]);
USB.print(F("Frame to be sent : "));
USB.println(frame);
USB.print(F("Frames saved : "));
USB.println(frameBufferCount);
strcpy(frameBuffer[frameBufferCount], frame);
frameBufferCount++;
}
// Received nothing
else if (answer != 0) {
USB.println(F("Heard nothing or defective transmission."));
}
// There is/are frame to be sent
if (frameBufferCount > 0) {
USB.println(F("Checking 3G connection..."));
// Check if 3G connection is established
i = MAX_3G_CONNECTION_TRY;
while (!connect3G() && i > 0) {
delay(3000);
i--;
USB.println(F("Retry... (3s)"));
}
// 3G connection can't be established but frame buffer isn't full : do nothing
if (i == 0 && frameBufferCount < 6) {
USB.println(F("3G not connected."));
USB.println(F("Frame buffer isn't full (6)."));
USB.println(F("Saving frame."));
}
// 3G connection can't be established and frame buffer is full : reboot and lose frames
else if (i == 0 && frameBufferCount == 6) {
USB.println(F("3G not connected."));
USB.println(F("Frame buffer is full (6)."));
USB.println(F("Need to reboot Waspmote."));
USB.println(F("The frame in the buffer shall be lost."));
USB.println(F("Rebooting Waspmote..."));
PWR.reboot();
}
// 3G connection is established : empty the buffer
else if (i > 0) {
USB.println(F("3G connected."));
USB.println(F("Emptying frame buffer..."));
for (j = frameBufferCount; j > 0; j--) {
USB.print(F("Sending frame : "));
USB.print(frameBuffer[j]);
USB.println(F("..."));
done = send3GRequest(frameBuffer[j]);
if (done) {
USB.println(F("Frame sent."));
}
else {
USB.println(F("Frame unsent."));
}
frameBufferCount--;
}
USB.println(F("Frame buffer emptied."));
}
}
// Reboot after 24 hours
if (intFlag & RTC_INT) {
USB.println(F("An entire 24h cycle has already occured."));
USB.println(F("Rebooting Waspmote..."));
RTC.clearAlarmFlag();
PWR.reboot();
}
}