kernel: Widen pyro time values to 32 bits
[fw/altos] / src / kernel / ao_pyro.c
1 /*
2  * Copyright © 2012 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 #ifndef AO_FLIGHT_TEST
20 #include <ao.h>
21 #include <ao_sample.h>
22 #include <ao_flight.h>
23 #endif
24 #include <ao_pyro.h>
25
26 #if IS_COMPANION
27 #include <ao_companion.h>
28 #define ao_accel ao_companion_command.accel
29 #define ao_speed ao_companion_command.speed
30 #define ao_height ao_companion_command.height
31 #define ao_flight_state ao_companion_command.flight_state
32 #define ao_motor_number ao_companion_command.motor_number
33 #endif
34
35 #define ao_lowbit(x)    ((x) & (-x))
36
37 #ifndef AO_FLIGHT_TEST
38 enum ao_igniter_status
39 ao_pyro_status(uint8_t p)
40 {
41         struct ao_data packet;
42         int16_t value;
43
44         ao_arch_critical(
45                 ao_data_get(&packet);
46                 );
47
48         value = (AO_IGNITER_CLOSED>>1);
49         value = AO_SENSE_PYRO(&packet, p);
50         if (value < AO_IGNITER_OPEN)
51                 return ao_igniter_open;
52         else if (value > AO_IGNITER_CLOSED)
53                 return ao_igniter_ready;
54         else
55                 return ao_igniter_unknown;
56 }
57
58 void
59 ao_pyro_print_status(void)
60 {
61         uint8_t p;
62
63         for(p = 0; p < AO_PYRO_NUM; p++) {
64                 enum ao_igniter_status status = ao_pyro_status(p);
65                 printf("Igniter: %d Status: %s\n",
66                        p, ao_igniter_status_names[status]);
67         }
68 }
69 #endif
70
71 uint16_t        ao_pyro_fired;
72 uint16_t        ao_pyro_inhibited;
73
74 #ifndef PYRO_DBG
75 #define PYRO_DBG        0
76 #endif
77
78 #if PYRO_DBG
79 int pyro_dbg;
80 #define DBG(...)        do { if (pyro_dbg) { printf("\t%d: ", (int) (pyro - ao_config.pyro)); printf(__VA_ARGS__); } } while (0)
81 #else
82 #define DBG(...)
83 #endif
84
85 static angle_t
86 ao_sample_max_orient(void)
87 {
88         uint8_t i;
89         angle_t max = ao_sample_orients[0];
90
91         for (i = 1; i < AO_NUM_ORIENT; i++) {
92                 angle_t a = ao_sample_orients[i];
93                 if (a > max)
94                         max = a;
95         }
96         return max;
97 }
98 /*
99  * Given a pyro structure, figure out
100  * if the current flight state satisfies all
101  * of the requirements
102  */
103 static uint8_t
104 ao_pyro_ready(struct ao_pyro *pyro)
105 {
106         enum ao_pyro_flag flag, flags;
107 #if HAS_GYRO
108         angle_t max_orient;
109 #endif
110
111         flags = pyro->flags;
112         while (flags != ao_pyro_none) {
113                 flag = ao_lowbit(flags);
114                 flags &= ~flag;
115                 switch (flag) {
116
117                 case ao_pyro_accel_less:
118                         if (ao_accel <= pyro->accel_less)
119                                 continue;
120                         DBG("accel %d > %d\n", ao_accel, pyro->accel_less);
121                         break;
122                 case ao_pyro_accel_greater:
123                         if (ao_accel >= pyro->accel_greater)
124                                 continue;
125                         DBG("accel %d < %d\n", ao_accel, pyro->accel_greater);
126                         break;
127                 case ao_pyro_speed_less:
128                         if (ao_speed <= pyro->speed_less)
129                                 continue;
130                         DBG("speed %d > %d\n", ao_speed, pyro->speed_less);
131                         break;
132                 case ao_pyro_speed_greater:
133                         if (ao_speed >= pyro->speed_greater)
134                                 continue;
135                         DBG("speed %d < %d\n", ao_speed, pyro->speed_greater);
136                         break;
137                 case ao_pyro_height_less:
138                         if (ao_height <= pyro->height_less)
139                                 continue;
140                         DBG("height %d > %d\n", ao_height, pyro->height_less);
141                         break;
142                 case ao_pyro_height_greater:
143                         if (ao_height >= pyro->height_greater)
144                                 continue;
145                         DBG("height %d < %d\n", ao_height, pyro->height_greater);
146                         break;
147
148 #if HAS_GYRO
149                 case ao_pyro_orient_less:
150                         max_orient = ao_sample_max_orient();
151                         if (max_orient <= pyro->orient_less)
152                                 continue;
153                         DBG("orient %d > %d\n", max_orient, pyro->orient_less);
154                         break;
155                 case ao_pyro_orient_greater:
156                         max_orient = ao_sample_max_orient();
157                         if (max_orient >= pyro->orient_greater)
158                                 continue;
159                         DBG("orient %d < %d\n", max_orient, pyro->orient_greater);
160                         break;
161 #endif
162
163                 case ao_pyro_time_less:
164                         if ((int32_t) (ao_time() - ao_launch_tick) <= pyro->time_less)
165                                 continue;
166                         DBG("time %d > %d\n", (int32_t)(ao_time() - ao_launch_tick), pyro->time_less);
167                         break;
168                 case ao_pyro_time_greater:
169                         if ((int32_t) (ao_time() - ao_launch_tick) >= pyro->time_greater)
170                                 continue;
171                         DBG("time %d < %d\n", (int32_t)(ao_time() - ao_launch_tick), pyro->time_greater);
172                         break;
173
174                 case ao_pyro_ascending:
175                         if (ao_speed > 0)
176                                 continue;
177                         DBG("not ascending speed %d\n", ao_speed);
178                         break;
179                 case ao_pyro_descending:
180                         if (ao_speed < 0)
181                                 continue;
182                         DBG("not descending speed %d\n", ao_speed);
183                         break;
184
185                 case ao_pyro_after_motor:
186                         if (ao_motor_number >= pyro->motor)
187                                 continue;
188                         DBG("motor %d != %d\n", ao_motor_number, pyro->motor);
189                         break;
190
191                 case ao_pyro_delay:
192                         /* handled separately */
193                         continue;
194
195                 case ao_pyro_state_less:
196                         if (ao_flight_state < pyro->state_less)
197                                 continue;
198                         DBG("state %d >= %d\n", ao_flight_state, pyro->state_less);
199                         break;
200                 case ao_pyro_state_greater_or_equal:
201                         if (ao_flight_state >= pyro->state_greater_or_equal)
202                                 continue;
203                         DBG("state %d < %d\n", ao_flight_state, pyro->state_greater_or_equal);
204                         break;
205
206                 default:
207                         continue;
208                 }
209                 return false;
210         }
211         return true;
212 }
213
214 #ifndef AO_FLIGHT_TEST
215 static void
216 ao_pyro_pin_set(uint8_t p, uint8_t v)
217 {
218         switch (p) {
219 #if AO_PYRO_NUM > 0
220         case 0: ao_gpio_set(AO_PYRO_PORT_0, AO_PYRO_PIN_0, v); break;
221 #endif
222 #if AO_PYRO_NUM > 1
223         case 1: ao_gpio_set(AO_PYRO_PORT_1, AO_PYRO_PIN_1, v); break;
224 #endif
225 #if AO_PYRO_NUM > 2
226         case 2: ao_gpio_set(AO_PYRO_PORT_2, AO_PYRO_PIN_2, v); break;
227 #endif
228 #if AO_PYRO_NUM > 3
229         case 3: ao_gpio_set(AO_PYRO_PORT_3, AO_PYRO_PIN_3, v); break;
230 #endif
231 #if AO_PYRO_NUM > 4
232         case 4: ao_gpio_set(AO_PYRO_PORT_4, AO_PYRO_PIN_4, v); break;
233 #endif
234 #if AO_PYRO_NUM > 5
235         case 5: ao_gpio_set(AO_PYRO_PORT_5, AO_PYRO_PIN_5, v); break;
236 #endif
237 #if AO_PYRO_NUM > 6
238         case 6: ao_gpio_set(AO_PYRO_PORT_6, AO_PYRO_PIN_6, v); break;
239 #endif
240 #if AO_PYRO_NUM > 7
241         case 7: ao_gpio_set(AO_PYRO_PORT_7, AO_PYRO_PIN_7, v); break;
242 #endif
243         default: break;
244         }
245 }
246 #endif
247
248 uint8_t ao_pyro_wakeup;
249
250 static void
251 ao_pyro_pins_fire(uint16_t fire)
252 {
253         uint8_t p;
254
255         for (p = 0; p < AO_PYRO_NUM; p++) {
256                 if (fire & (1 << p))
257                         ao_pyro_pin_set(p, 1);
258         }
259         ao_delay(ao_config.pyro_time);
260         for (p = 0; p < AO_PYRO_NUM; p++) {
261                 if (fire & (1 << p))
262                         ao_pyro_pin_set(p, 0);
263         }
264         ao_delay(AO_MS_TO_TICKS(50));
265 }
266
267 static uint8_t
268 ao_pyro_check(void)
269 {
270         struct ao_pyro  *pyro;
271         uint8_t         p, any_waiting;
272         uint16_t        fire = 0;
273
274         any_waiting = 0;
275         for (p = 0; p < AO_PYRO_NUM; p++) {
276                 pyro = &ao_config.pyro[p];
277
278                 /* Ignore igniters which have already fired or inhibited
279                  */
280                 if ((ao_pyro_fired|ao_pyro_inhibited) & (1 << p))
281                         continue;
282
283                 /* Ignore disabled igniters
284                  */
285                 if (!pyro->flags)
286                         continue;
287
288                 any_waiting = 1;
289                 /* Check pyro state to see if it should fire
290                  */
291                 if (!pyro->delay_done) {
292                         if (!ao_pyro_ready(pyro))
293                                 continue;
294
295                         /* If there's a delay set, then remember when
296                          * it expires
297                          */
298                         if (pyro->flags & ao_pyro_delay) {
299                                 pyro->delay_done = ao_time() + pyro->delay;
300                                 if (!pyro->delay_done)
301                                         pyro->delay_done = 1;
302                         }
303                 }
304
305                 /* Check to see if we're just waiting for
306                  * the delay to expire
307                  */
308                 if (pyro->delay_done) {
309
310                         /* Check to make sure the required conditions
311                          * remain valid. If not, inhibit the channel
312                          * by setting the inhibited bit
313                          */
314                         if (!ao_pyro_ready(pyro)) {
315                                 ao_pyro_inhibited |= (1 << p);
316                                 continue;
317                         }
318
319                         if ((int32_t) (ao_time() - pyro->delay_done) < 0)
320                                 continue;
321                 }
322
323                 fire |= (1 << p);
324         }
325
326         if (fire) {
327                 ao_pyro_fired |= fire;
328                 ao_pyro_pins_fire(fire);
329         }
330
331         return any_waiting;
332 }
333
334 #define NO_VALUE        0xff
335
336 #define AO_PYRO_NAME_LEN        4
337
338 #if !DISABLE_HELP
339 #define ENABLE_HELP 1
340 #endif
341
342 #if ENABLE_HELP
343 #define HELP(s) (s)
344 #else
345 #define HELP(s)
346 #endif
347
348 const struct {
349         char                    name[AO_PYRO_NAME_LEN];
350         enum ao_pyro_flag       flag;
351         uint8_t                 offset;
352 #if ENABLE_HELP
353         char                    *help;
354 #endif
355 } ao_pyro_values[] = {
356         { "a<", ao_pyro_accel_less,     offsetof(struct ao_pyro, accel_less), HELP("accel less (m/ss * 16)") },
357         { "a>", ao_pyro_accel_greater,  offsetof(struct ao_pyro, accel_greater), HELP("accel greater (m/ss * 16)") },
358
359         { "s<", ao_pyro_speed_less,     offsetof(struct ao_pyro, speed_less), HELP("speed less (m/s * 16)") },
360         { "s>", ao_pyro_speed_greater,  offsetof(struct ao_pyro, speed_greater), HELP("speed greater (m/s * 16)") },
361
362         { "h<", ao_pyro_height_less,    offsetof(struct ao_pyro, height_less), HELP("height less (m)") },
363         { "h>", ao_pyro_height_greater, offsetof(struct ao_pyro, height_greater), HELP("height greater (m)") },
364
365 #if HAS_GYRO
366         { "o<", ao_pyro_orient_less,    offsetof(struct ao_pyro, orient_less), HELP("orient less (deg)") },
367         { "o>", ao_pyro_orient_greater, offsetof(struct ao_pyro, orient_greater), HELP("orient greater (deg)")  },
368 #endif
369
370         { "t<", ao_pyro_time_less,      offsetof(struct ao_pyro, time_less), HELP("time less (s * 100)") },
371         { "t>", ao_pyro_time_greater,   offsetof(struct ao_pyro, time_greater), HELP("time greater (s * 100)")  },
372
373         { "f<", ao_pyro_state_less,     offsetof(struct ao_pyro, state_less), HELP("state less") },
374         { "f>=",ao_pyro_state_greater_or_equal, offsetof(struct ao_pyro, state_greater_or_equal), HELP("state greater or equal")  },
375
376         { "A", ao_pyro_ascending,       NO_VALUE, HELP("ascending") },
377         { "D", ao_pyro_descending,      NO_VALUE, HELP("descending") },
378
379         { "m", ao_pyro_after_motor,     offsetof(struct ao_pyro, motor), HELP("after motor") },
380
381         { "d", ao_pyro_delay,           offsetof(struct ao_pyro, delay), HELP("delay before firing (s * 100)") },
382         { "", ao_pyro_none,             NO_VALUE, HELP(NULL) },
383 };
384
385 #define NUM_PYRO_VALUES (sizeof ao_pyro_values / sizeof ao_pyro_values[0])
386
387 #ifndef AO_FLIGHT_TEST
388 static void
389 ao_pyro(void)
390 {
391         uint8_t         any_waiting;
392
393         ao_config_get();
394         while (ao_flight_state < ao_flight_boost)
395                 ao_sleep(&ao_flight_state);
396
397         for (;;) {
398                 ao_sleep_for(&ao_pyro_wakeup, AO_MS_TO_TICKS(100));
399                 if (ao_flight_state >= ao_flight_landed)
400                         break;
401                 any_waiting = ao_pyro_check();
402                 if (!any_waiting)
403                         break;
404         }
405         ao_exit();
406 }
407
408 struct ao_task ao_pyro_task;
409
410
411 static void
412 ao_pyro_print_name(uint8_t v)
413 {
414         const char *s = ao_pyro_values[v].name;
415         printf ("%s%s", s, "   " + strlen(s));
416 }
417
418 #if ENABLE_HELP
419 static void
420 ao_pyro_help(void)
421 {
422         uint8_t v;
423         for (v = 0; ao_pyro_values[v].flag != ao_pyro_none; v++) {
424                 ao_pyro_print_name(v);
425                 if (ao_pyro_values[v].offset != NO_VALUE)
426                         printf ("<n> ");
427                 else
428                         printf ("    ");
429                 printf ("%s\n", ao_pyro_values[v].help);
430         }
431 }
432 #endif
433
434 static int32_t
435 ao_pyro_get(void *base, uint8_t offset, uint8_t size)
436 {
437         int32_t value;
438         switch (size) {
439         case 8:
440                 value = *((uint8_t *) ((char *) base + offset));
441                 break;
442         case 16:
443         default:
444                 value = *((int16_t *) (void *) ((char *) base + offset));
445                 break;
446         case 32:
447                 value = *((int32_t *) (void *) ((char *) base + offset));
448                 break;
449         }
450         return value;
451 }
452
453 static bool
454 ao_pyro_put(void *base, uint8_t offset, uint8_t size, int32_t value)
455 {
456         switch (size) {
457         case 8:
458                 if (value < 0)
459                         return false;
460                 *((uint8_t *) ((char *) base + offset)) = value;
461                 break;
462         case 16:
463         default:
464                 *((int16_t *) (void *) ((char *) base + offset)) = value;
465                 break;
466         case 32:
467                 *((int32_t *) (void *) ((char *) base + offset)) = value;
468                 break;
469         }
470         return true;
471 }
472
473 static uint8_t
474 ao_pyro_size(enum ao_pyro_flag flag)
475 {
476         if (flag & AO_PYRO_8_BIT_VALUE)
477                 return 8;
478         if (flag & AO_PYRO_32_BIT_VALUE)
479                 return 32;
480         return 16;
481 }
482
483 void
484 ao_pyro_show(void)
485 {
486         uint8_t         p;
487         uint8_t         v;
488         struct ao_pyro  *pyro;
489
490         printf ("Pyro-count: %d\n", AO_PYRO_NUM);
491         for (p = 0; p < AO_PYRO_NUM; p++) {
492                 printf ("Pyro %2d: ", p);
493                 pyro = &ao_config.pyro[p];
494                 if (!pyro->flags) {
495                         printf ("<disabled>\n");
496                         continue;
497                 }
498                 for (v = 0; ao_pyro_values[v].flag != ao_pyro_none; v++) {
499                         if (!(pyro->flags & ao_pyro_values[v].flag))
500                                 continue;
501                         ao_pyro_print_name(v);
502                         if (ao_pyro_values[v].offset != NO_VALUE) {
503                                 printf ("%6ld ",
504                                         (long) ao_pyro_get(pyro,
505                                                            ao_pyro_values[v].offset,
506                                                            ao_pyro_size(ao_pyro_values[v].flag)));
507                         } else {
508                                 printf ("       ");
509                         }
510                 }
511                 printf ("\n");
512         }
513 }
514
515 void
516 ao_pyro_set(void)
517 {
518         uint8_t p;
519         struct ao_pyro pyro_tmp;
520         char    name[AO_PYRO_NAME_LEN];
521         uint8_t c;
522         uint8_t v;
523
524         ao_cmd_white();
525
526 #if ENABLE_HELP
527         switch (ao_cmd_lex_c) {
528         case '?':
529                 ao_pyro_help();
530                 return;
531         }
532 #endif
533
534         p = ao_cmd_decimal();
535         if (ao_cmd_status != ao_cmd_success)
536                 return;
537         if (AO_PYRO_NUM <= p) {
538                 printf ("invalid pyro channel %d\n", p);
539                 return;
540         }
541         memset(&pyro_tmp, '\0', sizeof (pyro_tmp));
542         for (;;) {
543                 ao_cmd_white();
544                 if (ao_cmd_lex_c == '\n')
545                         break;
546
547                 for (c = 0; c < AO_PYRO_NAME_LEN - 1; c++) {
548                         if (ao_cmd_is_white() || ao_cmd_lex_c == '\n')
549                                 break;
550                         name[c] = ao_cmd_lex_c;
551                         ao_cmd_lex();
552                 }
553                 name[c] = '\0';
554                 for (v = 0; ao_pyro_values[v].flag != ao_pyro_none; v++) {
555                         if (!strcmp (ao_pyro_values[v].name, name))
556                                 break;
557                 }
558                 if (ao_pyro_values[v].flag == ao_pyro_none) {
559                         printf ("invalid pyro field %s\n", name);
560                         ao_cmd_status = ao_cmd_syntax_error;
561                         return;
562                 }
563                 pyro_tmp.flags |= ao_pyro_values[v].flag;
564                 if (ao_pyro_values[v].offset != NO_VALUE) {
565                         int32_t r = 1;
566                         ao_cmd_white();
567                         if (ao_cmd_lex_c == '-') {
568                                 r = -1;
569                                 ao_cmd_lex();
570                         }
571                         r *= ao_cmd_decimal();
572                         if (ao_cmd_status != ao_cmd_success)
573                                 return;
574                         if (!ao_pyro_put(&pyro_tmp, ao_pyro_values[v].offset,
575                                          ao_pyro_size(ao_pyro_values[v].flag), r))
576                         {
577                                 ao_cmd_status = ao_cmd_syntax_error;
578                                 return;
579                         }
580                 }
581         }
582         _ao_config_edit_start();
583         ao_config.pyro[p] = pyro_tmp;
584         _ao_config_edit_finish();
585 }
586
587 void
588 ao_pyro_manual(uint8_t p)
589 {
590         printf ("ao_pyro_manual %d\n", p);
591         if (p >= AO_PYRO_NUM) {
592                 ao_cmd_status = ao_cmd_syntax_error;
593                 return;
594         }
595         ao_pyro_pins_fire(1 << p);
596 }
597
598 struct ao_pyro_old_values {
599         enum ao_pyro_flag       flag;
600         uint8_t                 offset;
601         uint8_t                 size;
602 };
603
604 static const struct ao_pyro_old_values ao_pyro_1_24_values[] = {
605         { .flag = ao_pyro_accel_less, .offset = offsetof(struct ao_pyro_1_24, accel_less), 16 },
606         { .flag = ao_pyro_accel_greater, .offset = offsetof(struct ao_pyro_1_24, accel_greater), 16 },
607         { .flag = ao_pyro_speed_less, .offset = offsetof(struct ao_pyro_1_24, speed_less), 16 },
608         { .flag = ao_pyro_speed_greater, .offset = offsetof(struct ao_pyro_1_24, speed_greater), 16 },
609         { .flag = ao_pyro_height_less, .offset = offsetof(struct ao_pyro_1_24, height_less), 16 },
610         { .flag = ao_pyro_height_greater, .offset = offsetof(struct ao_pyro_1_24, height_greater), 16 },
611         { .flag = ao_pyro_orient_less, .offset = offsetof(struct ao_pyro_1_24, orient_less), 16 },
612         { .flag = ao_pyro_orient_greater, .offset = offsetof(struct ao_pyro_1_24, orient_greater), 16 },
613         { .flag = ao_pyro_time_less, .offset = offsetof(struct ao_pyro_1_24, time_less), 16 },
614         { .flag = ao_pyro_time_greater, .offset = offsetof(struct ao_pyro_1_24, time_greater), 16 },
615         { .flag = ao_pyro_delay, .offset = offsetof(struct ao_pyro_1_24, delay), 16 },
616         { .flag = ao_pyro_state_less, .offset = offsetof(struct ao_pyro_1_24, state_less), 8 },
617         { .flag = ao_pyro_state_greater_or_equal, .offset = offsetof(struct ao_pyro_1_24, state_greater_or_equal), 8 },
618         { .flag = ao_pyro_after_motor, .offset = offsetof(struct ao_pyro_1_24, motor), 16 },
619 };
620
621 #define NUM_PYRO_1_24_VALUES (sizeof ao_pyro_1_24_values / sizeof ao_pyro_1_24_values[0])
622
623 static int32_t
624 ao_pyro_get_1_24(void *base, enum ao_pyro_flag flag)
625 {
626         unsigned v;
627
628         for (v = 0; v < NUM_PYRO_1_24_VALUES; v++) {
629                 if (ao_pyro_1_24_values[v].flag == flag)
630                         return ao_pyro_get(base, ao_pyro_1_24_values[v].offset, ao_pyro_1_24_values[v].size);
631         }
632         return 0;
633 }
634
635 void
636 ao_pyro_update_version(void)
637 {
638         if (ao_config.minor <= 24)
639         {
640
641                 /* First, move all of the config bits that follow the pyro data */
642
643                 char    *pyro_base = (void *) &ao_config.pyro;
644                 char    *after_pyro_new = pyro_base + AO_PYRO_NUM * sizeof (struct ao_pyro);
645                 char    *after_pyro_1_24 = pyro_base + AO_PYRO_NUM * sizeof (struct ao_pyro_1_24);
646                 char    *config_end = (void *) (&ao_config + 1);
647                 size_t  to_move = config_end - after_pyro_new;
648
649                 memmove(after_pyro_new, after_pyro_1_24, to_move);
650
651                 /* Now, adjust all of the pyro entries */
652
653                 struct ao_pyro          *pyro_new = ao_config.pyro;
654                 struct ao_pyro_1_24     *pyro_old = (void *) ao_config.pyro;
655
656                 int p = AO_PYRO_NUM;
657
658                 /* New struct is larger than the old, so start at the
659                  * last one and work towards the first
660                  */
661                 while (p-- > 0) {
662                         unsigned v;
663                         int32_t value;
664                         struct ao_pyro  tmp;
665
666                         memset(&tmp, '\0', sizeof(tmp));
667                         tmp.flags = pyro_old[p].flags;
668
669                         for (v = 0; v < NUM_PYRO_VALUES; v++)
670                         {
671                                 value = ao_pyro_get_1_24(&pyro_old[v], ao_pyro_values[v].flag);
672                                 ao_pyro_put(&tmp, ao_pyro_values[v].offset,
673                                             ao_pyro_size(ao_pyro_values[v].flag), value);
674                         }
675                         memcpy(&pyro_new[p], &tmp, sizeof(tmp));
676                 }
677         }
678 }
679
680 void
681 ao_pyro_init(void)
682 {
683 #if AO_PYRO_NUM > 0
684         ao_enable_output(AO_PYRO_PORT_0, AO_PYRO_PIN_0, 0);
685 #endif
686 #if AO_PYRO_NUM > 1
687         ao_enable_output(AO_PYRO_PORT_1, AO_PYRO_PIN_1, 0);
688 #endif
689 #if AO_PYRO_NUM > 2
690         ao_enable_output(AO_PYRO_PORT_2, AO_PYRO_PIN_2, 0);
691 #endif
692 #if AO_PYRO_NUM > 3
693         ao_enable_output(AO_PYRO_PORT_3, AO_PYRO_PIN_3, 0);
694 #endif
695 #if AO_PYRO_NUM > 4
696         ao_enable_output(AO_PYRO_PORT_4, AO_PYRO_PIN_4, 0);
697 #endif
698 #if AO_PYRO_NUM > 5
699         ao_enable_output(AO_PYRO_PORT_5, AO_PYRO_PIN_5, 0);
700 #endif
701 #if AO_PYRO_NUM > 6
702         ao_enable_output(AO_PYRO_PORT_6, AO_PYRO_PIN_6, 0);
703 #endif
704 #if AO_PYRO_NUM > 7
705         ao_enable_output(AO_PYRO_PORT_7, AO_PYRO_PIN_7, 0);
706 #endif
707         ao_add_task(&ao_pyro_task, ao_pyro, "pyro");
708 }
709 #endif