-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWiFlyDevice.cpp
496 lines (352 loc) · 11.9 KB
/
WiFlyDevice.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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
#include "WiFly.h"
#define DEBUG_LEVEL 0
#include "Debug.h"
boolean WiFlyDevice::findInResponse(const char *toMatch,
unsigned int timeOut = 0) {
/*
*/
// TODO: Change 'sendCommand' to use 'findInResponse' and have timeouts,
// and then use 'sendCommand' in routines that call 'findInResponse'?
int byteRead;
unsigned int timeOutTarget; // in milliseconds
DEBUG_LOG(1, "Entered findInResponse");
DEBUG_LOG(2, "Want to match:");
DEBUG_LOG(2, toMatch);
DEBUG_LOG(3, "Found:");
for (unsigned int offset = 0; offset < strlen(toMatch); offset++) {
// Reset after successful character read
timeOutTarget = millis() + timeOut; // Doesn't handle timer wrapping
while (!uart.available()) {
// Wait, with optional time out.
if (timeOut > 0) {
if (millis() > timeOutTarget) {
return false;
}
}
delay(1); // This seems to improve reliability slightly
}
// We read this separately from the conditional statement so we can
// log the character read when debugging.
byteRead = uart.read();
delay(1); // Removing logging may affect timing slightly
DEBUG_LOG(5, "Offset:");
DEBUG_LOG(5, offset);
DEBUG_LOG(3, (char) byteRead);
DEBUG_LOG(4, byteRead);
if (byteRead != toMatch[offset]) {
offset = 0;
// Ignore character read if it's not a match for the start of the string
if (byteRead != toMatch[offset]) {
offset = -1;
}
continue;
}
}
return true;
}
boolean WiFlyDevice::responseMatched(const char *toMatch) {
/*
*/
boolean matchFound = true;
DEBUG_LOG(3, "Entered responseMatched");
for (unsigned int offset = 0; offset < strlen(toMatch); offset++) {
while (!uart.available()) {
// Wait -- no timeout
}
if (uart.read() != toMatch[offset]) {
matchFound = false;
break;
}
}
return matchFound;
}
#define COMMAND_MODE_ENTER_RETRY_ATTEMPTS 5
#define COMMAND_MODE_GUARD_TIME 250 // in milliseconds
boolean WiFlyDevice::enterCommandMode(boolean isAfterBoot) {
/*
*/
DEBUG_LOG(1, "Entered enterCommandMode");
// Note: We used to first try to exit command mode in case we were
// already in it. Doing this actually seems to be less
// reliable so instead we now just ignore the errors from
// sending the "$$$" in command mode.
for (int retryCount = 0;
retryCount < COMMAND_MODE_ENTER_RETRY_ATTEMPTS;
retryCount++) {
// At first I tried automatically performing the
// wait-send-wait-send-send process twice before checking if it
// succeeded. But I removed the automatic retransmission even
// though it makes things marginally less reliable because it speeds
// up the (hopefully) more common case of it working after one
// transmission. We also now have automatic-retries for the whole
// process now so it's less important anyway.
if (isAfterBoot) {
delay(1000); // This delay is so characters aren't missed after a reboot.
}
delay(COMMAND_MODE_GUARD_TIME);
uart.print("$$$");
delay(COMMAND_MODE_GUARD_TIME);
// We could already be in command mode or not.
// We could also have a half entered command.
// If we have a half entered command the "$$$" we've just added
// could succeed or it could trigger an error--there's a small
// chance it could also screw something up (by being a valid
// argument) but hopefully it's not a general issue. Sending
// these two newlines is intended to clear any partial commands if
// we're in command mode and in either case trigger the display of
// the version prompt (not that we actually check for it at the moment
// (anymore)).
// TODO: Determine if we need less boilerplate here.
uart.println();
uart.println();
// TODO: Add flush with timeout here?
// This is used to determine whether command mode has been entered
// successfully.
// TODO: Find alternate approach or only use this method after a (re)boot?
uart.println("ver");
if (findInResponse("\r\nWiFly Ver", 1000)) {
// TODO: Flush or leave remainder of output?
return true;
}
}
return false;
}
void WiFlyDevice::skipRemainderOfResponse() {
/*
*/
DEBUG_LOG(3, "Entered skipRemainderOfResponse");
while (!(uart.available() && (uart.read() == '\n'))) {
// Skip remainder of response
}
}
void WiFlyDevice::waitForResponse(const char *toMatch) {
/*
*/
// Note: Never exits if the correct response is never found
while(!responseMatched(toMatch)) {
skipRemainderOfResponse();
}
}
WiFlyDevice::WiFlyDevice(SpiUartDevice& theUart) : uart (theUart) {
/*
Note: Supplied UART should/need not have been initialised first.
*/
// The WiFly requires the server port to be set between the `reboot`
// and `join` commands so we go for a "useful" default first.
serverPort = DEFAULT_SERVER_PORT;
serverConnectionActive = false;
}
// TODO: Create a constructor that allows a SpiUartDevice (or better a "Stream") to be supplied
// and/or allow the select pin to be supplied.
void WiFlyDevice::begin() {
/*
*/
DEBUG_LOG(1, "Entered WiFlyDevice::begin()");
uart.begin();
reboot(); // Reboot to get device into known state
requireFlowControl();
setConfiguration();
}
// TODO: Create a `begin()` that allows IP etc to be supplied.
#define SOFTWARE_REBOOT_RETRY_ATTEMPTS 5
boolean WiFlyDevice::softwareReboot(boolean isAfterBoot = true) {
/*
*/
DEBUG_LOG(1, "Entered softwareReboot");
for (int retryCount = 0;
retryCount < SOFTWARE_REBOOT_RETRY_ATTEMPTS;
retryCount++) {
// TODO: Have the post-boot delay here rather than in enterCommandMode()?
if (!enterCommandMode(isAfterBoot)) {
return false; // If the included retries have failed we give up
}
uart.println("reboot");
// For some reason the full "*Reboot*" message doesn't always
// seem to be received so we look for the later "*READY*" message instead.
// TODO: Extract information from boot? e.g. version and MAC address
if (findInResponse("*READY*", 2000)) {
return true;
}
}
return false;
}
boolean WiFlyDevice::hardwareReboot() {
/*
*/
uart.ioSetDirection(0b00000010);
uart.ioSetState(0b00000000);
delay(1);
uart.ioSetState(0b00000010);
return findInResponse("*READY*", 2000);
}
#if USE_HARDWARE_RESET
#define REBOOT hardwareReboot
#else
#define REBOOT softwareReboot
#endif
void WiFlyDevice::reboot() {
/*
*/
DEBUG_LOG(1, "Entered reboot");
if (!REBOOT()) {
DEBUG_LOG(1, "Failed to reboot. Halting.");
while (1) {}; // Hang. TODO: Handle differently?
}
}
boolean WiFlyDevice::sendCommand(const char *command,
boolean isMultipartCommand = false,
const char *expectedResponse = "AOK") {
/*
*/
uart.print(command);
if (!isMultipartCommand) {
uart.flush();
uart.println();
// TODO: Handle other responses
// (e.g. autoconnect message before it's turned off,
// DHCP messages, and/or ERR etc)
waitForResponse(expectedResponse);
}
return true;
}
void WiFlyDevice::requireFlowControl() {
/*
Note: If flow control has been set but not saved then this
function won't handle it correctly.
Note: Any other configuration changes made since the last
reboot will also be saved by this function so this
function should ideally be called immediately after a
reboot.
*/
DEBUG_LOG(1, "Entered requireFlowControl");
enterCommandMode();
// TODO: Reboot here to ensure we get an accurate response and
// don't unintentionally save a configuration we don't intend?
sendCommand("get uart", false, "Flow=0x");
while (!uart.available()) {
// Wait to ensure we have the full response
}
char flowControlState = uart.read();
uart.flush();
if (flowControlState == '1') {
return;
}
// Enable flow control
sendCommand("set uart flow 1");
sendCommand("save", false, "Storing in config");
// Without this (or some delay--but this seemed more useful/reliable)
// the reboot will fail because we seem to lose the response from the
// WiFly and end up with something like:
// "*ReboWiFly Ver 2.18"
// instead of the correct:
// "*Reboot*WiFly Ver 2.18"
// TODO: Solve the underlying problem
sendCommand("get uart", false, "Flow=0x1");
reboot();
}
void WiFlyDevice::setConfiguration() {
/*
*/
enterCommandMode();
// TODO: Handle configuration better
// Turn off auto-connect
sendCommand("set wlan join 0");
// TODO: Turn off server functionality until needed
// with "set ip protocol <something>"
// Set server port
sendCommand("set ip localport ", true);
// TODO: Handle numeric arguments correctly.
uart.print(serverPort);
sendCommand("");
// Turn off remote connect message
sendCommand("set comm remote 0");
// Turn off status messages
// sendCommand("set sys printlvl 0");
// TODO: Change baud rate and then re-connect?
// Turn off RX data echo
// TODO: Should really treat as bitmask
// sendCommand("set uart mode 0");
}
boolean WiFlyDevice::join(const char *ssid) {
/*
*/
// TODO: Handle other authentication methods
// TODO: Handle escaping spaces/$ in SSID
// TODO: Allow for timeout?
// TODO: Do we want to set the passphrase/key to empty when they're
// not required? (Probably not necessary as I think module
// ignores them when they're not required.)
sendCommand("join ", true);
// TODO: Actually detect failure to associate
// TODO: Handle connecting to Adhoc device
if (sendCommand(ssid, false, "Associated!")) {
// TODO: Extract information from complete response?
// TODO: Change this to still work when server mode not active
waitForResponse("Listen on ");
skipRemainderOfResponse();
return true;
}
return false;
}
boolean WiFlyDevice::join(const char *ssid, const char *passphrase,
boolean isWPA) {
/*
*/
// TODO: Handle escaping spaces/$ in passphrase and SSID
// TODO: Do this better...
sendCommand("set wlan ", true);
if (isWPA) {
sendCommand("passphrase ", true);
} else {
sendCommand("key ", true);
}
sendCommand(passphrase);
return join(ssid);
}
#define IP_ADDRESS_BUFFER_SIZE 16 // "255.255.255.255\0"
const char * WiFlyDevice::ip() {
/*
The return value is intended to be dropped directly
into calls to 'print' or 'println' style methods.
*/
static char ip[IP_ADDRESS_BUFFER_SIZE] = "";
// TODO: Ensure we're not in a connection?
enterCommandMode();
// Version 2.19 of the WiFly firmware has a "get ip a" command but
// we can't use it because we want to work with 2.18 too.
sendCommand("get ip", false, "IP=");
char newChar;
byte offset = 0;
// Copy the IP address from the response into our buffer
while (offset < IP_ADDRESS_BUFFER_SIZE) {
newChar = uart.read();
if (newChar == ':') {
ip[offset] = '\x00';
break;
} else if (newChar != -1) {
ip[offset] = newChar;
offset++;
}
}
// This handles the case when we reach the end of the buffer
// in the loop. (Which should never happen anyway.)
// And hopefully this prevents us from failing completely if
// there's a mistake above.
ip[IP_ADDRESS_BUFFER_SIZE-1] = '\x00';
// This should skip the remainder of the output.
// TODO: Handle this better?
waitForResponse("<");
while (uart.read() != ' ') {
// Skip the prompt
}
// For some reason the "sendCommand" approach leaves the system
// in a state where it misses the first/next connection so for
// now we don't check the response.
// TODO: Fix this
uart.println("exit");
//sendCommand("exit", false, "EXIT");
return ip;
}
// Preinstantiate required objects
SpiUartDevice SpiSerial;
WiFlyDevice WiFly(SpiSerial);