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
|
/*
* Copyright © 2012 Keith Packard <keithp@keithp.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
#include <ao.h>
#include <ao_exti.h>
#include <ao_pad.h>
#include <ao_74hc165.h>
#include <ao_radio_cmac.h>
static __xdata uint8_t ao_pad_ignite;
static __xdata struct ao_pad_command command;
static __xdata struct ao_pad_query query;
static __pdata uint8_t ao_pad_armed;
static __pdata uint16_t ao_pad_arm_time;
static __pdata uint8_t ao_pad_box;
static __xdata uint8_t ao_pad_disabled;
static __pdata uint16_t ao_pad_packet_time;
#ifndef AO_PAD_RSSI_MINIMUM
#define AO_PAD_RSSI_MINIMUM -90
#endif
#define DEBUG 1
#if DEBUG
static __pdata uint8_t ao_pad_debug;
#define PRINTD(...) (ao_pad_debug ? (printf(__VA_ARGS__), 0) : 0)
#define FLUSHD() (ao_pad_debug ? (flush(), 0) : 0)
#else
#define PRINTD(...)
#define FLUSHD()
#endif
static void
ao_siren(uint8_t v)
{
#ifdef AO_SIREN
ao_gpio_set(AO_SIREN_PORT, AO_SIREN_PIN, AO_SIREN, v);
#else
#if HAS_BEEP
ao_beep(v ? AO_BEEP_MID : 0);
#else
(void) v;
#endif
#endif
}
static void
ao_strobe(uint8_t v)
{
#ifdef AO_STROBE
ao_gpio_set(AO_STROBE_PORT, AO_STROBE_PIN, AO_STROBE, v);
#else
(void) v;
#endif
}
#ifdef AO_PAD_PORT_0
#define pins_pad(pad) (*((AO_PAD_ ## pad ## _PORT) == AO_PAD_PORT_0 ? (&pins0) : (&pins1)))
#else
#define pins_pad(pad) pins0
#define AO_PAD_PORT_0 AO_PAD_PORT
#endif
static void
ao_pad_run(void)
{
AO_PORT_TYPE pins0;
#ifdef AO_PAD_PORT_1
AO_PORT_TYPE pins1;
#endif
for (;;) {
while (!ao_pad_ignite)
ao_sleep(&ao_pad_ignite);
/*
* Actually set the pad bits
*/
pins0 = 0;
#ifdef AO_PAD_PORT_1
pins1 = 0;
#endif
#if AO_PAD_NUM > 0
if (ao_pad_ignite & (1 << 0))
pins_pad(0) |= (1 << AO_PAD_PIN_0);
#endif
#if AO_PAD_NUM > 1
if (ao_pad_ignite & (1 << 1))
pins_pad(1) |= (1 << AO_PAD_PIN_1);
#endif
#if AO_PAD_NUM > 2
if (ao_pad_ignite & (1 << 2))
pins_pad(2) |= (1 << AO_PAD_PIN_2);
#endif
#if AO_PAD_NUM > 3
if (ao_pad_ignite & (1 << 3))
pins_pad(3) |= (1 << AO_PAD_PIN_3);
#endif
#if AO_PAD_NUM > 4
if (ao_pad_ignite & (1 << 4))
pins_pad(4) |= (1 << AO_PAD_PIN_4);
#endif
#if AO_PAD_NUM > 5
if (ao_pad_ignite & (1 << 5))
pins_pad(5) |= (1 << AO_PAD_PIN_5);
#endif
#if AO_PAD_NUM > 6
if (ao_pad_ignite & (1 << 6))
pins_pad(6) |= (1 << AO_PAD_PIN_6);
#endif
#if AO_PAD_NUM > 7
if (ao_pad_ignite & (1 << 7))
pins_pad(7) |= (1 << AO_PAD_PIN_7);
#endif
#ifdef AO_PAD_PORT_1
PRINTD("ignite pins 0x%x 0x%x\n", pins0, pins1);
ao_gpio_set_bits(AO_PAD_PORT_0, pins0);
ao_gpio_set_bits(AO_PAD_PORT_1, pins1);
#else
PRINTD("ignite pins 0x%x\n", pins0);
ao_gpio_set_bits(AO_PAD_PORT_0, pins0);
#endif
while (ao_pad_ignite) {
ao_pad_ignite = 0;
ao_delay(AO_PAD_FIRE_TIME);
}
#ifdef AO_PAD_PORT_1
ao_gpio_clr_bits(AO_PAD_PORT_0, pins0);
ao_gpio_clr_bits(AO_PAD_PORT_1, pins1);
PRINTD("turn off pins 0x%x 0x%x\n", pins0, pins1);
#else
ao_gpio_set_bits(AO_PAD_PORT_0, pins0);
PRINTD("turn off pins 0x%x\n", pins0);
#endif
}
}
#define AO_PAD_ARM_SIREN_INTERVAL 200
/* Resistor values needed for various voltage test ratios:
*
* Net names involved:
*
* V_BATT Battery power, after the initial power switch
* V_PYRO Pyro power, after the pyro power switch (and initial power switch)
* PYRO_SENSE ADC input to sense V_PYRO voltage
* BATT_SENSE ADC input to sense V_BATT voltage
* IGNITER FET output to pad (the other pad lead hooks to V_PYRO)
* IGNITER_SENSE ADC input to sense igniter voltage
*
* AO_PAD_R_V_BATT_BATT_SENSE Resistor from battery rail to battery sense input
* AO_PAD_R_BATT_SENSE_GND Resistor from battery sense input to ground
*
* AO_PAD_R_V_BATT_V_PYRO Resistor from battery rail to pyro rail
* AO_PAD_R_V_PYRO_PYRO_SENSE Resistor from pyro rail to pyro sense input
* AO_PAD_R_PYRO_SENSE_GND Resistor from pyro sense input to ground
*
* AO_PAD_R_V_PYRO_IGNITER Optional resistors from pyro rail to FET igniter output
* AO_PAD_R_IGNITER_IGNITER_SENSE Resistors from FET igniter output to igniter sense ADC inputs
* AO_PAD_R_IGNITER_SENSE_GND Resistors from igniter sense ADC inputs to ground
*/
int16_t
ao_pad_decivolt(int16_t adc, int16_t r_plus, int16_t r_minus)
{
int32_t mul = (int32_t) AO_ADC_REFERENCE_DV * (r_plus + r_minus);
int32_t div = (int32_t) AO_ADC_MAX * r_minus;
return ((int32_t) adc * mul + mul/2) / div;
}
static void
ao_pad_monitor(void)
{
uint8_t c;
uint8_t sample;
__pdata AO_LED_TYPE prev = 0, cur = 0;
__pdata uint8_t beeping = 0;
__xdata volatile struct ao_data *packet;
__pdata uint16_t arm_beep_time = 0;
sample = ao_data_head;
for (;;) {
__pdata int16_t pyro;
ao_arch_critical(
while (sample == ao_data_head)
ao_sleep((void *) DATA_TO_XDATA(&ao_data_head));
);
packet = &ao_data_ring[sample];
sample = ao_data_ring_next(sample);
/* Reply battery voltage */
query.battery = ao_pad_decivolt(packet->adc.batt, AO_PAD_R_V_BATT_BATT_SENSE, AO_PAD_R_BATT_SENSE_GND);
/* Current pyro voltage */
pyro = ao_pad_decivolt(packet->adc.pyro,
AO_PAD_R_V_PYRO_PYRO_SENSE,
AO_PAD_R_PYRO_SENSE_GND);
cur = 0;
if (pyro > query.battery * 7 / 8) {
query.arm_status = AO_PAD_ARM_STATUS_ARMED;
cur |= AO_LED_ARMED;
} else {
query.arm_status = AO_PAD_ARM_STATUS_DISARMED;
arm_beep_time = 0;
}
if ((ao_time() - ao_pad_packet_time) > AO_SEC_TO_TICKS(2))
cur |= AO_LED_RED;
else if (ao_radio_cmac_rssi < AO_PAD_RSSI_MINIMUM)
cur |= AO_LED_AMBER;
else
cur |= AO_LED_GREEN;
for (c = 0; c < AO_PAD_NUM; c++) {
int16_t sense = ao_pad_decivolt(packet->adc.sense[c],
AO_PAD_R_IGNITER_IGNITER_SENSE,
AO_PAD_R_IGNITER_SENSE_GND);
uint8_t status = AO_PAD_IGNITER_STATUS_UNKNOWN;
/*
* Here's the resistor stack on each
* igniter channel. Note that
* AO_PAD_R_V_PYRO_IGNITER is optional
*
* v_pyro \
* AO_PAD_R_V_PYRO_IGNITER igniter
* output /
* AO_PAD_R_IGNITER_IGNITER_SENSE \
* sense relay
* AO_PAD_R_IGNITER_SENSE_GND /
* gnd ---
*
*/
#ifdef AO_PAD_R_V_PYRO_IGNITER
if (sense <= pyro / 8) {
/* close to zero → relay is closed */
status = AO_PAD_IGNITER_STATUS_NO_IGNITER_RELAY_CLOSED;
if ((ao_time() % 100) < 50)
cur |= AO_LED_CONTINUITY(c);
}
else
#endif
{
if (sense >= (pyro * 7) / 8) {
/* sense close to pyro voltage; igniter is good
*/
status = AO_PAD_IGNITER_STATUS_GOOD_IGNITER_RELAY_OPEN;
cur |= AO_LED_CONTINUITY(c);
} else {
/* relay not shorted (if we can tell),
* and igniter not obviously present
*/
status = AO_PAD_IGNITER_STATUS_NO_IGNITER_RELAY_OPEN;
}
}
query.igniter_status[c] = status;
}
if (cur != prev) {
PRINTD("change leds from %02x to %02x\n",
prev, cur);
FLUSHD();
ao_led_set(cur);
prev = cur;
}
if (ao_pad_armed && (int16_t) (ao_time() - ao_pad_arm_time) > AO_PAD_ARM_TIME)
ao_pad_armed = 0;
if (ao_pad_armed) {
ao_strobe(1);
ao_siren(1);
beeping = 1;
} else if (query.arm_status == AO_PAD_ARM_STATUS_ARMED && !beeping) {
if (arm_beep_time == 0) {
arm_beep_time = AO_PAD_ARM_SIREN_INTERVAL;
beeping = 1;
ao_siren(1);
}
--arm_beep_time;
} else if (beeping) {
beeping = 0;
ao_siren(0);
ao_strobe(0);
}
}
}
void
ao_pad_disable(void)
{
if (!ao_pad_disabled) {
ao_pad_disabled = 1;
ao_radio_recv_abort();
}
}
void
ao_pad_enable(void)
{
ao_pad_disabled = 0;
ao_wakeup (&ao_pad_disabled);
}
#if HAS_74HC165
static uint8_t
ao_pad_read_box(void)
{
uint8_t byte = ao_74hc165_read();
uint8_t h, l;
h = byte >> 4;
l = byte & 0xf;
return h * 10 + l;
}
#endif
#ifdef AO_PAD_SELECTOR_PORT
static int ao_pad_read_box(void) {
AO_PORT_TYPE value = ao_gpio_get_all(AO_PAD_SELECTOR_PORT);
unsigned pin;
int select = 1;
for (pin = 0; pin < sizeof (AO_PORT_TYPE) * 8; pin++) {
if (AO_PAD_SELECTOR_PINS & (1 << pin)) {
if ((value & (1 << pin)) == 0)
return select;
select++;
}
}
return ao_config.pad_box;
}
#else
#if HAS_FIXED_PAD_BOX
#define ao_pad_read_box() ao_config.pad_box
#endif
#ifdef PAD_BOX
#define ao_pad_read_box() PAD_BOX
#endif
#endif
static void
ao_pad(void)
{
int16_t time_difference;
int8_t ret;
ao_pad_box = 0;
ao_led_set(LEDS_AVAILABLE);
ao_delay(AO_MS_TO_TICKS(500));
ao_led_set(0);
for (;;) {
FLUSHD();
while (ao_pad_disabled)
ao_sleep(&ao_pad_disabled);
ret = ao_radio_cmac_recv(&command, sizeof (command), 0);
PRINTD ("cmac_recv %d %d\n", ret, ao_radio_cmac_rssi);
if (ret != AO_RADIO_CMAC_OK)
continue;
ao_pad_packet_time = ao_time();
ao_pad_box = ao_pad_read_box();
PRINTD ("tick %d box %d (me %d) cmd %d channels %02x\n",
command.tick, command.box, ao_pad_box, command.cmd, command.channels);
switch (command.cmd) {
case AO_PAD_ARM:
if (command.box != ao_pad_box) {
PRINTD ("box number mismatch\n");
break;
}
if (command.channels & ~(AO_PAD_ALL_CHANNELS))
break;
time_difference = command.tick - ao_time();
PRINTD ("arm tick %d local tick %d\n", command.tick, ao_time());
if (time_difference < 0)
time_difference = -time_difference;
if (time_difference > 10) {
PRINTD ("time difference too large %d\n", time_difference);
break;
}
PRINTD ("armed\n");
ao_pad_armed = command.channels;
ao_pad_arm_time = ao_time();
break;
case AO_PAD_QUERY:
if (command.box != ao_pad_box) {
PRINTD ("box number mismatch\n");
break;
}
query.tick = ao_time();
query.box = ao_pad_box;
query.channels = AO_PAD_ALL_CHANNELS;
query.armed = ao_pad_armed;
PRINTD ("query tick %d box %d channels %02x arm %d arm_status %d igniter %d,%d,%d,%d\n",
query.tick, query.box, query.channels, query.armed,
query.arm_status,
query.igniter_status[0],
query.igniter_status[1],
query.igniter_status[2],
query.igniter_status[3]);
ao_radio_cmac_send(&query, sizeof (query));
break;
case AO_PAD_FIRE:
if (!ao_pad_armed) {
PRINTD ("not armed\n");
break;
}
if ((uint16_t) (ao_time() - ao_pad_arm_time) > AO_SEC_TO_TICKS(20)) {
PRINTD ("late pad arm_time %d time %d\n",
ao_pad_arm_time, ao_time());
break;
}
PRINTD ("ignite\n");
ao_pad_ignite = ao_pad_armed;
ao_pad_arm_time = ao_time();
ao_wakeup(&ao_pad_ignite);
break;
case AO_PAD_STATIC:
if (!ao_pad_armed) {
PRINTD ("not armed\n");
break;
}
#if HAS_LOG
if (!ao_log_running) ao_log_start();
#endif
if ((uint16_t) (ao_time() - ao_pad_arm_time) > AO_SEC_TO_TICKS(20)) {
PRINTD ("late pad arm_time %d time %d\n",
ao_pad_arm_time, ao_time());
break;
}
PRINTD ("ignite\n");
ao_pad_ignite = ao_pad_armed;
ao_pad_arm_time = ao_time();
ao_wakeup(&ao_pad_ignite);
break;
case AO_PAD_ENDSTATIC:
#if HAS_LOG
ao_log_stop();
#endif
break;
}
}
}
void
ao_pad_test(void)
{
uint8_t c;
printf ("Arm switch: ");
switch (query.arm_status) {
case AO_PAD_ARM_STATUS_ARMED:
printf ("Armed\n");
break;
case AO_PAD_ARM_STATUS_DISARMED:
printf ("Disarmed\n");
break;
case AO_PAD_ARM_STATUS_UNKNOWN:
printf ("Unknown\n");
break;
}
for (c = 0; c < AO_PAD_NUM; c++) {
printf ("Pad %d: ", c);
switch (query.igniter_status[c]) {
case AO_PAD_IGNITER_STATUS_NO_IGNITER_RELAY_CLOSED: printf ("No igniter. Relay closed\n"); break;
case AO_PAD_IGNITER_STATUS_NO_IGNITER_RELAY_OPEN: printf ("No igniter. Relay open\n"); break;
case AO_PAD_IGNITER_STATUS_GOOD_IGNITER_RELAY_OPEN: printf ("Good igniter. Relay open\n"); break;
case AO_PAD_IGNITER_STATUS_UNKNOWN: printf ("Unknown\n"); break;
}
}
}
void
ao_pad_manual(void)
{
uint8_t ignite;
int repeat;
ao_cmd_white();
if (!ao_match_word("DoIt"))
return;
ao_cmd_decimal();
if (ao_cmd_status != ao_cmd_success)
return;
ignite = 1 << ao_cmd_lex_i;
ao_cmd_decimal();
if (ao_cmd_status != ao_cmd_success) {
repeat = 1;
ao_cmd_status = ao_cmd_success;
} else
repeat = ao_cmd_lex_i;
while (repeat-- > 0) {
ao_pad_ignite = ignite;
ao_wakeup(&ao_pad_ignite);
ao_delay(AO_PAD_FIRE_TIME>>1);
}
}
static __xdata struct ao_task ao_pad_task;
static __xdata struct ao_task ao_pad_ignite_task;
static __xdata struct ao_task ao_pad_monitor_task;
#if DEBUG
void
ao_pad_set_debug(void)
{
ao_cmd_decimal();
if (ao_cmd_status == ao_cmd_success)
ao_pad_debug = ao_cmd_lex_i != 0;
}
static void
ao_pad_alarm_debug(void)
{
uint8_t which, value;
ao_cmd_decimal();
if (ao_cmd_status != ao_cmd_success)
return;
which = ao_cmd_lex_i;
ao_cmd_decimal();
if (ao_cmd_status != ao_cmd_success)
return;
value = ao_cmd_lex_i;
printf ("Set %s to %d\n", which ? "siren" : "strobe", value);
if (which)
ao_siren(value);
else
ao_strobe(value);
}
#endif
__code struct ao_cmds ao_pad_cmds[] = {
{ ao_pad_test, "t\0Test pad continuity" },
{ ao_pad_manual, "i <key> <n>\0Fire igniter. <key> is doit with D&I" },
#if DEBUG
{ ao_pad_set_debug, "D <0 off, 1 on>\0Debug" },
{ ao_pad_alarm_debug, "S <0 strobe, 1 siren> <0 off, 1 on>\0Set alarm output" },
#endif
{ 0, NULL }
};
#ifndef AO_PAD_PORT_1
#define AO_PAD_0_PORT AO_PAD_PORT
#define AO_PAD_1_PORT AO_PAD_PORT
#define AO_PAD_2_PORT AO_PAD_PORT
#define AO_PAD_3_PORT AO_PAD_PORT
#define AO_PAD_4_PORT AO_PAD_PORT
#define AO_PAD_5_PORT AO_PAD_PORT
#define AO_PAD_6_PORT AO_PAD_PORT
#define AO_PAD_7_PORT AO_PAD_PORT
#endif
void
ao_pad_init(void)
{
#ifdef AO_PAD_SELECTOR_PORT
unsigned pin;
for (pin = 0; pin < sizeof (AO_PORT_TYPE) * 8; pin++) {
if (AO_PAD_SELECTOR_PINS & (1 << pin))
ao_enable_input(AO_PAD_SELECTOR_PORT, pin, AO_EXTI_MODE_PULL_UP);
}
#endif
#if AO_PAD_NUM > 0
ao_enable_output(AO_PAD_0_PORT, AO_PAD_PIN_0, AO_PAD_0, 0);
#endif
#if AO_PAD_NUM > 1
ao_enable_output(AO_PAD_1_PORT, AO_PAD_PIN_1, AO_PAD_1, 0);
#endif
#if AO_PAD_NUM > 2
ao_enable_output(AO_PAD_2_PORT, AO_PAD_PIN_2, AO_PAD_2, 0);
#endif
#if AO_PAD_NUM > 3
ao_enable_output(AO_PAD_3_PORT, AO_PAD_PIN_3, AO_PAD_3, 0);
#endif
#if AO_PAD_NUM > 4
ao_enable_output(AO_PAD_4_PORT, AO_PAD_PIN_4, AO_PAD_4, 0);
#endif
#if AO_PAD_NUM > 5
ao_enable_output(AO_PAD_5_PORT, AO_PAD_PIN_5, AO_PAD_5, 0);
#endif
#if AO_PAD_NUM > 5
ao_enable_output(AO_PAD_6_PORT, AO_PAD_PIN_6, AO_PAD_6, 0);
#endif
#if AO_PAD_NUM > 7
ao_enable_output(AO_PAD_7_PORT, AO_PAD_PIN_7, AO_PAD_7, 0);
#endif
#ifdef AO_STROBE
ao_enable_output(AO_STROBE_PORT, AO_STROBE_PIN, AO_STROBE, 0);
#endif
#ifdef AO_SIREN
ao_enable_output(AO_SIREN_PORT, AO_SIREN_PIN, AO_SIREN, 0);
#endif
ao_cmd_register(&ao_pad_cmds[0]);
ao_add_task(&ao_pad_task, ao_pad, "pad listener");
ao_add_task(&ao_pad_ignite_task, ao_pad_run, "pad igniter");
ao_add_task(&ao_pad_monitor_task, ao_pad_monitor, "pad monitor");
}
|