forked from omzlo/piwatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
442 lines (382 loc) · 10.3 KB
/
main.c
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
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include "i2c.h"
#define I2C_ADDR 0x62
static int piwatcher_open(void)
{
int dev;
dev = i2c_open_dev(1);
if (dev<0) {
fprintf(stderr,"Failed to open i2c device 1\n");
return dev;
}
return dev;
}
static int piwatcher_read_register(uint8_t reg)
{
int i2c = piwatcher_open();
if (i2c<0)
return i2c;
int res = i2c_read_byte_data(i2c, I2C_ADDR, reg);
close(i2c);
if (res<0) {
fprintf(stderr,"Failed to read i2c data from register 0x%02x\n", reg);
}
return res;
}
static int piwatcher_write_register(uint8_t reg, uint8_t value)
{
int i2c = piwatcher_open();
if (i2c<0)
return i2c;
int res = i2c_write_byte_data(i2c, I2C_ADDR, reg, value);
close(i2c);
if (res<0) {
fprintf(stderr,"Failed to write i2c data to register 0x%02x\n", reg);
}
return res;
}
static int piwatcher_read_block(uint8_t reg, uint8_t *buf, uint8_t count)
{
int i2c = piwatcher_open();
if (i2c<0)
return i2c;
int res = i2c_read_block(i2c, I2C_ADDR, reg, buf, count);
close(i2c);
if (res<0) {
fprintf(stderr,"Failed to read i2c block from register 0x%02x\n", reg);
}
return res;
}
static int piwatcher_write_block(uint8_t reg, uint8_t *buf, uint8_t count)
{
int i2c = piwatcher_open();
if (i2c<0)
return i2c;
int res = i2c_write_block(i2c, I2C_ADDR, reg, buf, count);
close(i2c);
if (res<0) {
fprintf(stderr,"Failed to write i2c block to register 0x%02x\n", reg);
}
return res;
}
static const char *status_to_string(uint8_t status)
{
static char buf[100];
buf[0]=0;
if ((status & 0x80)!=0) {
strcat(buf,"button_pressed ");
}
if ((status & 0x40)!=0) {
strcat(buf,"timer_rebooted ");
}
if ((status & 0x20)!=0) {
strcat(buf,"button_rebooted ");
}
return buf;
}
static const char *time_to_string(uint32_t wd)
{
static char buf[32];
if (wd==0)
return "disabled";
sprintf(buf, "%u", wd);
return buf;
}
static int as_seconds(const char *s)
{
char *next;
if (strcmp(s,"disable")==0)
return 0;
long val = strtol(s, &next, 0);
if (next==s)
return -1;
if (*next!=0)
return -2;
return val;
}
/******/
static int cmd_status(int argc, char **argv)
{
int res = piwatcher_read_register(0);
if (res<0) {
fprintf(stdout,"ERR\n");
return res;
}
fprintf(stdout,"OK\t0x%02x\t%s\n", res&0xFF, status_to_string(res));
return 0;
}
int cmd_reset(int argc, char **argv)
{
int res = piwatcher_write_register(0, 0xFF);
if (res<0) {
fprintf(stdout, "ERR\n");
return res;
}
fprintf(stdout,"OK\n");
return 0;
}
int cmd_watch(int argc, char **argv)
{
if (argc==0)
{
int res = piwatcher_read_register(1);
if (res<0) {
fprintf(stdout,"ERR\n");
return res;
}
fprintf(stdout,"OK\t%s\n", time_to_string(res));
}
else
{
int wdd;
if ((wdd = as_seconds(argv[0]))<0)
{
fprintf(stderr,"Syntax error in watchdog timeout value '%s'.\n", argv[0]);
fprintf(stdout,"ERR\n");
return wdd;
}
if (wdd>255)
{
fprintf(stderr,"Watchdog value cannot exceed 255.\n");
fprintf(stdout,"ERR\n");
return -1;
}
int res = piwatcher_write_register(1, wdd&0xFF);
if (res<0) {
fprintf(stdout,"ERR\n");
return res;
}
fprintf(stdout,"OK\n");
}
return 0;
}
int cmd_dump(int argc, char **argv)
{
uint8_t block[32];
int res = piwatcher_read_block(0,block,12);
if (res<0) {
fprintf(stdout, "ERR\n");
return res;
}
fprintf(stdout,"OK\t");
for (int i=0;i<12;i++)
fprintf(stdout,"%02x ", block[i]);
fprintf(stdout, "\n");
return 0;
}
int cmd_ticks(int argc, char **argv)
{
uint8_t block[32];
int res = piwatcher_read_block(4,block,4);
if (res<0) {
fprintf(stdout, "ERR\n");
return res;
}
uint32_t ticks = ((uint32_t)block[0])
| ((uint32_t)block[1]<<8)
| ((uint32_t)block[2]<<16)
| ((uint32_t)block[3]<<24);
fprintf(stdout,"OK\t%u\n", ticks);
return 0;
}
int cmd_wake(int argc, char **argv)
{
char block[2];
if (argc==0)
{
int res = piwatcher_read_block(2,block,2);
if (res<0) {
fprintf(stdout,"ERR\n");
return res;
}
uint32_t seconds = ((uint32_t)block[0]<<1) | ((uint32_t)block[1]<<9);
fprintf(stdout,"OK\t%s\n", time_to_string(seconds));
}
else
{
uint32_t wku;
if ((wku = as_seconds(argv[0]))<0)
{
fprintf(stderr,"Syntax error in wakeup timeout value '%s'.", argv[0]);
fprintf(stdout,"ERR\n");
return wku;
}
if (wku>131070) {
fprintf(stderr,"Wakeup value cannot exceed 131070.\n");
fprintf(stdout,"ERR\n");
return -1;
}
if ((wku&1)!=0) {
fprintf(stderr,"Warning: wakeup value will be rounded to %u.\n", wku+1);
}
wku = (wku+1)>>1;
block[0] = wku & 0xFF;
block[1] = wku >> 8;
int res = piwatcher_write_block(2, block, 2);
if (res<0) {
fprintf(stdout,"ERR\n");
return res;
}
fprintf(stdout,"OK\n");
}
return 0;
}
int cmd_defaults(int argc, char **argv)
{
char block[4];
if (argc==0)
{
int res = piwatcher_read_block(8,block,4);
if (res<0) {
fprintf(stdout,"ERR\n");
return res;
}
if ((block[0]<2) || (block[0]==0xFF))
{
fprintf(stderr,"Wrong firmware version\n");
fprintf(stdout,"ERR\n");
return -1;
}
uint32_t seconds = ((uint32_t)block[2]<<1) | ((uint32_t)block[3]<<9);
fprintf(stdout,"OK\t%s", time_to_string(block[1]));
fprintf(stdout,"\t%s\n", time_to_string(seconds));
}
else
{
int res = piwatcher_read_register(8);
if (res<0) {
fprintf(stdout,"ERR\n");
return res;
}
if ((res<2) || (res==0xFF))
{
fprintf(stderr,"Wrong firmware version\n");
fprintf(stdout,"ERR\n");
return -1;
}
int wdd;
if ((wdd = as_seconds(argv[0]))<0)
{
fprintf(stderr,"Syntax error in watchdog timeout value '%s'.\n", argv[0]);
fprintf(stdout,"ERR\n");
return wdd;
}
if (wdd>255)
{
fprintf(stderr,"Watchdog value cannot exceed 255.\n");
fprintf(stdout,"ERR\n");
return -1;
}
uint32_t wku;
if ((wku = as_seconds(argv[1]))<0)
{
fprintf(stderr,"Syntax error in wakeup timeout value '%s'.", argv[1]);
fprintf(stdout,"ERR\n");
return wku;
}
if (wku>131070) {
fprintf(stderr,"Wakeup value cannot exceed 131070.\n");
fprintf(stdout,"ERR\n");
return -1;
}
if ((wku&1)!=0) {
fprintf(stderr,"Warning: wakeup value will be rounded to %u.\n", wku+1);
}
wku = (wku+1)>>1;
block[0] = wdd & 0xFF;
block[1] = wku & 0xFF;
block[2] = wku >> 8;
res = piwatcher_write_block(9, block, 3);
if (res<0) {
fprintf(stdout,"ERR\n");
return res;
}
fprintf(stdout,"OK\n");
}
}
int cmd_led(int argc, char **argv)
{
int res = piwatcher_read_register(8);
if (res<0) {
fprintf(stdout,"ERR\n");
return res;
}
if ((res<2) || (res==0xFF))
{
fprintf(stderr,"Wrong firmware version\n");
fprintf(stdout,"ERR\n");
return -1;
}
if (argc!=1)
{
fprintf(stderr,"Missing parameter ('on' or 'off')\n");
fprintf(stdout,"ERR\n");
return -1;
}
if (strcmp(argv[0],"off")==0)
{
res = piwatcher_write_register(8,0x81);
}
else if (strcmp(argv[0],"on")==0)
{
res = piwatcher_write_register(8,0x82);
}
else
{
fprintf(stderr,"Parameter should be 'on' or 'off'\n");
fprintf(stdout,"ERR\n");
return -1;
}
if (res<0) {
fprintf(stdout,"ERR\n");
return res;
}
fprintf(stdout,"OK\n");
return 0;
}
struct command_desc {
const char *command;
int (*run)(int, char **);
const char *help_text;
};
int cmd_help(int argc, char **argv);
#define COUNT_COMMANDS 9
struct command_desc commands[COUNT_COMMANDS] = {
{ "ticks", cmd_ticks, "print the current number of clock ticks," },
{ "defaults", cmd_defaults, "Set default values for watchdog interval and wakeup delay, stored in eeprom and loaded at boot time." },
{ "dump", cmd_dump, "dump the registers in hexadecimal." },
{ "help", cmd_help, "print this help" },
{ "led", cmd_led, "Switch the onboard LED on or off" },
{ "reset", cmd_reset, "clear the status register" },
{ "status", cmd_status, "print the status register" },
{ "wake", cmd_wake, "show or set the current wake delay in seconds." },
{ "watch", cmd_watch, "show or set the current watchdog interval in seconds." },
};
int cmd_help(int argc, char **argv)
{
fprintf(stdout,"piwatcher <command> [argument]\n");
fprintf(stdout,"Where command is:\n");
for (int i=0;i<COUNT_COMMANDS;i++)
fprintf(stdout, "\t%s: %s\n", commands[i].command, commands[i].help_text);
fprintf(stdout,"For more info: https://www.omzlo.com/the-piwatcher\n");
}
int main(int argc, char **argv)
{
//int optind = 1;
if (argc<=1) {
fprintf(stderr,"Missing command\n");
fprintf(stderr,"Type '%s help' for usage\n", argv[0]);
exit(-2);
}
for (int i=0; i<COUNT_COMMANDS; i++) {
if (strcmp(commands[i].command, argv[1])==0)
{
return commands[i].run(argc-2, argv+2);
}
}
fprintf(stderr,"Unrecognized command '%s'\n", argv[1]);
fprintf(stderr,"Type '%s help' for usage\n", argv[0]);
}