-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAtmegaEEPROM.ino
506 lines (358 loc) · 8.5 KB
/
AtmegaEEPROM.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
/*
AtmegaEEPROM extends Node
*/
/* *** Globals and sketch configuration *** */
#define SERIAL_EN 1 /* Enable serial */
#define DEBUG 1 /* Enable trace statements */
#define _MEM 1 // Report free memory
#define CONFIG_VERSION "nx1 "
#define CONFIG_EEPROM_START 0
#include <EEPROM.h>
#include <JeeLib.h>
#include <Wire.h>
#include <OneWire.h>
#include <DotmpeLib.h>
#include <mpelib.h>
const String sketch = "X-AtmegaEEPROM";
const int version = 0;
char node[] = "nx";
char node_id[7];
/* IO pins */
// RXD 0
// TXD 1
// INT0 2
// MOSI 11
// MISO 12
//# define _DBG_LED 13 // SCK
MpeSerial mpeser (57600);
/* *** InputParser *** {{{ */
Stream& cmdIo = cmdIo;
extern const InputParser::Commands cmdTab[] PROGMEM;
byte* buffer = (byte*) malloc(50);
const InputParser parser (buffer, 50, cmdTab);
/* *** /InputParser *** }}} */
/* *** Report variables *** {{{ */
/* *** /Report variables *** }}} */
/* *** Scheduled tasks *** {{{ */
/* *** /Scheduled tasks *** }}} */
/* *** EEPROM config *** {{{ */
struct Config {
char node[2];
int node_id;
int version;
char config_id[4];
signed int temp_offset;
//float temp_k;
int temp_k;
} static_config = {
/* default values */
{ node[0], node[1], }, 0, version,
CONFIG_VERSION,
TEMP_OFFSET, TEMP_K
};
Config config;
bool loadConfig(Config &c)
{
unsigned int w = sizeof(c);
if (
//EEPROM.read(CONFIG_EEPROM_START + 1 ) == CONFIG_VERSION[3] &&
//EEPROM.read(CONFIG_EEPROM_START + 2 ) == CONFIG_VERSION[2] &&
//EEPROM.read(CONFIG_EEPROM_START + 3 ) == CONFIG_VERSION[1] &&
//EEPROM.read(CONFIG_EEPROM_START) == CONFIG_VERSION[0]
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
}
}
#if _RFM12B
#endif //_RFM12B
}
/* *** /EEPROM config *** }}} */
/* *** Peripheral devices *** {{{ */
#if LDR_PORT
#endif
#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 *** {{{ */
/* *** /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("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("r: report now");
cmdIo.println("m: measure now");
cmdIo.println("x: reset");
cmdIo.println("?/h: this help");
}
void config_sercmd() {
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);
//cmdIo.print("v ");
//showNibble(config.version);
//cmdIo.println("");
}
// fwd decl.
void initConfig(void);
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();
}
static void configToEEPROMCmd() {
int write;
parser >> write;
if (write) {
writeConfig(config);
} else {
loadConfig(config);
initConfig();
}
cmdIo.print("W ");
cmdIo.println(write);
}
void ctempoffset_sercmd(void) {
char c;
parser >> c;
int v = c;
if( v > 127 ) {
v -= 256;
}
config.temp_offset = v;
cmdIo.print("New offset: ");
cmdIo.println(config.temp_offset);
writeConfig(config);
}
void ctemp_sercmd(void) {
cmdIo.print("Offset: ");
cmdIo.println(config.temp_offset);
cmdIo.print("K: ");
cmdIo.println(config.temp_k);
cmdIo.print("Raw: ");
cmdIo.println(internalTemp(config.temp_offset, config.temp_k));
}
void tempCmd(void) {
float temp_k = config.temp_k / 10;
double t = ( internalTemp(config.temp_offset, temp_k) + config.temp_offset ) * temp_k ;
cmdIo.println( t );
}
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)
{
// See Prototype/Node
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();
tick = 0;
}
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)
{
int ctemp = internalTemp(config.temp_offset, (float) config.temp_k/10);
}
#if PIR_PORT
// send packet and wait for ack when there is a motion trigger
#endif // PIR_PORT
/* *** /Run-time handlers *** }}} */
/* *** InputParser handlers *** {{{ */
#if SERIAL_EN
void handshakeCmd() {
int v;
//char buf[7];
//node.toCharArray(buf, 7);
parser >> v;
sprintf(node_id, "%s%i", node, v);
cmdIo.print("handshakeCmd:");
cmdIo.println(node_id);
serialFlush();
}
const InputParser::Commands cmdTab[] = {
{ '?', 0, help_sercmd },
{ 'h', 0, help_sercmd },
{ 'c', 0, config_sercmd },
{ 'n', 0, configNodeCmd },
{ 'v', 0, configVersionCmd },
{ 'N', 3, configSetNodeCmd },
{ 'C', 1, configNodeIDCmd },
{ 'W', 1, configToEEPROMCmd },
//{ 'o', 0, ctempconfig_sercmd },
{ 'T', 1, ctempoffset_sercmd },
{ 't', 0, tempCmd },
{ 'A', 0, handshakeCmd },
{ 'm', 0, doMeasure },
{ '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));
#if DEBUG || _MEM
cmdIo.print(F("Free RAM: "));
cmdIo.println(freeRam());
#endif
serialFlush();
#endif
initLibs();
doReset();
}
void loop(void)
{
parser.poll();
serialFlush();
}
/* *** }}} */