-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNode.ino
659 lines (484 loc) · 11.5 KB
/
Node.ino
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
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
/*
Basetype Node
+ r/w config from EEPROM
- node_id xy-1
- sketch_id XY
- version 0
- Subtypes of this prototype: Serial.
- Depends on JeeLib Ports InputParser, but not all of ports compiles on t85.
XXX: SoftwareSerial support 20, 16, 8Mhz only. Does not compile for m8.
See
- AtmegaEEPROM
- Cassette328P
Serial protocol: [value[,arg2] ]command
Serial config
Set node to 'aa'::
"aa" N
Set node id to 2::
2,0 C
Write to EEPROM::
1 W
Reload from EEPROM (reset changes)::
0 W
*/
/* *** Globals and sketch configuration *** */
#define SERIAL_EN 1 /* Enable serial */
#define DEBUG 1 /* Enable trace statements */
#define DEBUG_MEASURE 0
#define _MEM 1 // Report free memory
#define _RFM12B 0
#define _RFM12LOBAT 0 // Use JeeNode lowbat measurement
#define _NRF24 1
#define ANNOUNCE_START 0
#define UI_IDLE 4000 // tenths of seconds idle time, ...
#define UI_STDBY 8000 // ms
#define CONFIG_VERSION "nx1 "
#define CONFIG_EEPROM_START 0
#include <SoftwareSerial.h>
#include <EEPROM.h>
//#include <util/crc16.h>
#include <JeeLib.h>
//#include <SPI.h>
//#include <RF24.h>
//#include <RF24Network.h>
#include <DotmpeLib.h>
#include <mpelib.h>
const String sketch = "Node";
const int version = 0;
char node[] = "nx";
// determined upon handshake
char node_id[7];
volatile bool ui_irq;
bool ui;
/* IO pins */
// RXD 0
// TXD 1
// INT0 2
// MOSI 11
// MISO 12
//# define _DBG_LED 13 // SCK
//SoftwareSerial virtSerial(11, 12); // RX, TX
MpeSerial mpeser (57600);
MilliTimer idle, stdby;
/* *** InputParser *** {{{ */
Stream& cmdIo = Serial;
extern const InputParser::Commands cmdTab[] PROGMEM;
byte* buffer = (byte*) malloc(50);
const InputParser parser (buffer, 50, cmdTab);//, virtSerial);
/* *** /InputParser *** }}} */
/* *** Report variables *** {{{ */
static byte reportCount; // count up until next report, i.e. packet send
/* Data reported by this sketch */
struct {
#if _DHT
int rhum :7; // rel-humdity: 0..100 (4 or 5% resolution?)
#if DHT_HIGH
/* DHT22/AM2302: 20% to 100% @ 2% rhum, -40C to 80C @ ~0.5 temp */
int temp :10; // -500..+500 (int value of tenths avg)
//#else
///* DHT11: 20% to 80% @ 5% rhum, 0C to 50C @ ~2C temp */
// int temp :10; // -500..+500 (tenths, .5 resolution)
#endif // DHT_HIGH
#endif //_DHT
int ctemp :10; // atmega temperature: -500..+500 (tenths)
#if _MEM
int memfree :16;
#endif
#if _RFM12LOBAT
byte lobat :1; // supply voltage dropped under 3.1V: 0..1
#endif
} payload;
/* *** /Report variables *** }}} */
/* *** Scheduled tasks *** {{{ */
enum {
ANNOUNCE,
TASK_END
};
// Scheduler.pollWaiting returns -1 or -2
static const char SCHED_WAITING = 0xFF; // -1: waiting to run
static const char SCHED_IDLE = 0xFE; // -2: no tasks running
static word schedbuf[TASK_END];
Scheduler scheduler (schedbuf, TASK_END);
/* *** /Scheduled tasks *** }}} */
/* *** EEPROM config *** {{{ */
// See Prototype Node or SensorNode
struct Config {
char node[4];
int node_id;
int version;
char config_id[4];
} config = {
/* default values */
{ node[0], node[1], 0, 0 }, 0, version,
CONFIG_VERSION
};
bool loadConfig(Config &c)
{
unsigned int w = sizeof(c);
if (
EEPROM.read(CONFIG_EEPROM_START + w - 1) == c.config_id[3] &&
EEPROM.read(CONFIG_EEPROM_START + w - 2) == c.config_id[2] &&
EEPROM.read(CONFIG_EEPROM_START + w - 3) == c.config_id[1] &&
EEPROM.read(CONFIG_EEPROM_START + w - 4) == c.config_id[0]
) {
for (unsigned int t=0; t<w; t++)
{
*((char*)&c + t) = EEPROM.read(CONFIG_EEPROM_START + t);
}
return true;
} else {
#if SERIAL_EN && DEBUG
cmdIo.println("No valid data in eeprom");
#endif
return false;
}
}
void writeConfig(Config &c)
{
for (unsigned int t=0; t<sizeof(c); t++) {
EEPROM.write(CONFIG_EEPROM_START + t, *((char*)&c + t));
// verify
if (EEPROM.read(CONFIG_EEPROM_START + t) != *((char*)&c + t))
{
// error writing to EEPROM
#if SERIAL_EN && DEBUG
cmdIo.println("Error writing "+ String(t)+" to EEPROM");
#endif
}
}
}
/* *** /EEPROM config *** }}} */
/* *** Scheduler routines *** {{{ */
// has to be defined because we're using the watchdog for low-power waiting
ISR(WDT_vect) { Sleepy::watchdogEvent(); }
/* *** /Scheduler routines *** }}} */
/* *** Peripheral devices *** {{{ */
#if SHT11_PORT
SHT11 sht11 (SHT11_PORT);
#endif
#if LDR_PORT
Port ldr (LDR_PORT);
#endif
/* *** PIR *** {{{ */
/* *** /PIR *** }}} */
#if _DHT
/* DHTxx: Digital temperature/humidity (Adafruit) */
#endif // DHT
#if _LCD84x48
/* Nokkia 5110 display */
#endif // LCD84x48
#if _DS
/* Dallas OneWire bus with registration for DS18B20 temperature sensors */
#endif // DS
#if _RFM12B
/* HopeRF RFM12B 868Mhz digital radio */
#endif // RFM12B
#if _NRF24
/* nRF24L01+: nordic 2.4Ghz digital radio */
#endif // NRF24
#if _RTC
/* DS1307: Real Time Clock over I2C */
#endif // RTC
#if _HMC5883L
/* Digital magnetometer I2C module */
#endif // HMC5883L
/* *** /Peripheral devices *** }}} */
/* *** Peripheral hardware routines *** {{{ */
#if LDR_PORT
#endif
/* *** - PIR routines *** {{{ */
#if PIR_PORT
#endif // PIR_PORT
/* *** /- PIR routines *** }}} */
#if _DHT
/* DHT temp/rh sensor routines (AdafruitDHT) */
#endif // DHT
#if _LCD
#endif //_LCD
#if _LCD84x48
#endif // LCD84x48
#if _DS
/* Dallas DS18B20 thermometer routines */
#endif // DS
#if _RFM12B
/* HopeRF RFM12B 868Mhz digital radio routines */
#endif // RFM12B
#if _NRF24
/* Nordic nRF24L01+ radio routines */
#endif // NRF24 funcs
#if _RTC
#endif // RTC
#if _HMC5883L
/* Digital magnetometer I2C routines */
#endif // HMC5883L
/* *** /Peripheral hardware routines *** }}} */
/* *** UI *** {{{ */
//ISR(INT0_vect)
void irq0()
{
ui_irq = true;
//Sleepy::watchdogInterrupts(0);
}
/* *** /UI *** }}} */
/* *** UART commands *** {{{ */
#if SERIAL_EN
void help_sercmd(void) {
cmdIo.println("n: print Node ID");
cmdIo.println("c: print config");
cmdIo.println("v: print version");
cmdIo.println("m: print free and used memory");
cmdIo.println("N: set Node (3 byte char)");
cmdIo.println("C: set Node ID (1 byte int)");
cmdIo.println("W: load/save config EEPROM");
cmdIo.println("E: erase EEPROM!");
cmdIo.println("?/h: this help");
}
void memStat() {
int free = freeRam();
int used = usedRam();
cmdIo.print("m ");
cmdIo.print(free);
cmdIo.print(' ');
cmdIo.print(used);
cmdIo.print(' ');
cmdIo.println();
}
void stdbyCmd() {
ui = false;
}
void config_sercmd(void) {
cmdIo.print("c ");
cmdIo.print(config.node);
cmdIo.print(" ");
cmdIo.print(config.node_id);
cmdIo.print(" ");
cmdIo.print(config.version);
cmdIo.print(" ");
cmdIo.print(config.config_id);
cmdIo.println();
}
static void configNodeCmd(void) {
cmdIo.print('n');
cmdIo.print(' ');
cmdIo.print(node_id);
cmdIo.print('\n');
}
static void configVersionCmd(void) {
cmdIo.print("v ");
cmdIo.println(config.version);
}
static void configSetNodeCmd() {
const char *node;
parser >> node;
config.node[0] = node[0];
config.node[1] = node[1];
config.node[2] = node[2];
initConfig();
cmdIo.print("N ");
cmdIo.println(config.node);
}
static void configNodeIDCmd() {
parser >> config.node_id;
initConfig();
cmdIo.print("C ");
cmdIo.println(node_id);
serialFlush();
}
void configToEEPROMCmd(void) {
int write;
parser >> write;
if (write) {
writeConfig(config);
} else {
loadConfig(config);
initConfig();
}
cmdIo.print("W ");
cmdIo.println(write);
}
static void eraseEEPROM() {
cmdIo.print("! Erasing EEPROM..");
for (int i = 0; i<EEPROM_SIZE; i++) {
char b = EEPROM.read(i);
if (b != 0x00) {
EEPROM.write(i, 0);
cmdIo.print('.');
}
}
cmdIo.println(' ');
cmdIo.print("E ");
cmdIo.println(EEPROM_SIZE);
}
#endif
/* *** UART commands *** }}} */
/* *** Initialization routines *** {{{ */
void initConfig(void)
{
sprintf(node_id, "%s%i", config.node, config.node_id);
}
void doConfig(void)
{
/* load valid config or reset default config */
if (!loadConfig(config)) {
writeConfig(config);
}
initConfig();
}
void initLibs()
{
}
/* *** /Initialization routines *** }}} */
/* *** Run-time handlers *** {{{ */
void doReset(void)
{
doConfig();
#ifdef _DBG_LED
pinMode(_DBG_LED, OUTPUT);
#endif
attachInterrupt(INT0, irq0, RISING);
ui_irq = false;
tick = 0;
scheduler.timer(ANNOUNCE, ANNOUNCE_START); // get the measurement loop going
}
bool doAnnounce(void)
{
/* see CarrierCase */
#if SERIAL_EN && DEBUG
cmdIo.print("\n[");
cmdIo.print(sketch);
cmdIo.print(".");
cmdIo.print(version);
cmdIo.println("]");
#endif // SERIAL_EN && DEBUG
cmdIo.println(node_id);
return false;
}
// readout all the sensors and other values
void doMeasure(void)
{
// none, see SensorNode
}
// periodic report, i.e. send out a packet and optionally report on serial port
bool doReport(void)
{
// none, see RadioNode
return false;
}
void uiStart()
{
idle.set(UI_IDLE);
if (!ui) {
ui = true;
}
}
void runScheduler(char task)
{
switch (task) {
case ANNOUNCE:
debugline("ANNOUNCE");
cmdIo.print(strlen(node_id));
cmdIo.println();
if (strlen(node_id) > 0) {
cmdIo.print("Node: ");
cmdIo.println(node_id);
//scheduler.timer(MEASURE, 0); schedule next step
} else {
doAnnounce();
//scheduler.timer(ANNOUNCE, 100);
}
serialFlush();
break;
#if DEBUG && SERIAL_EN
case SCHED_WAITING:
case SCHED_IDLE:
cmdIo.print("!");
serialFlush();
break;
default:
cmdIo.print("0x");
cmdIo.print(task, HEX);
cmdIo.println(" ?");
serialFlush();
break;
#endif
}
}
/* *** /Run-time handlers *** }}} */
/* *** InputParser handlers *** {{{ */
#if SERIAL_EN
const InputParser::Commands cmdTab[] = {
{ '?', 0, help_sercmd },
{ 'h', 0, help_sercmd },
{ 'm', 0, memStat },
{ 'c', 0, config_sercmd },
{ 'n', 0, configNodeCmd },
{ 'v', 0, configVersionCmd },
{ 'N', 3, configSetNodeCmd },
{ 'C', 1, configNodeIDCmd },
{ 'W', 1, configToEEPROMCmd },
{ 's', 0, stdbyCmd },
{ 'E', 0, eraseEEPROM },
{ 'x', 0, doReset },
{ 0 }
};
#endif // SERIAL_EN
/* *** /InputParser handlers *** }}} */
/* *** Main *** {{{ */
void setup(void)
{
#if SERIAL_EN
mpeser.begin();
mpeser.startAnnounce(sketch, String(version));
//virtSerial.begin(4800);
#if DEBUG || _MEM
cmdIo.print(F("Free RAM: "));
cmdIo.println(freeRam());
#endif
serialFlush();
#endif
initLibs();
doReset();
}
void loop(void)
{
#ifdef _DBG_LED
blink(_DBG_LED, 3, 10);
#endif
// FIXME: seems virtSerial receive is not working
//if (virtSerial.available())
// virtSerial.write(virtSerial.read());
if (ui_irq) {
debugline("Irq");
ui_irq = false;
uiStart();
}
debug_ticks();
if (cmdIo.available()) {
parser.poll();
return;
}
char task = scheduler.poll();
if (-1 < task && task < SCHED_IDLE) {
runScheduler(task);
}
if (ui) {
if (idle.poll()) {
stdby.set(UI_STDBY);
} else if (stdby.poll()) {
ui = false;
} else if (!stdby.idle()) {
// XXX toggle UI stdby Power, got to some lower power mode..
delay(30);
}
} else {
#ifdef _DBG_LED
blink(_DBG_LED, 1, 25);
#endif
serialFlush();
task = scheduler.pollWaiting();
if (-1 < task && task < SCHED_IDLE) {
runScheduler(task);
}
}
}
/* *** }}} */