34abe879b210bf20637f108afe6d0be3c49998f7
[fw/altos] / src / core / ao_log_telem.c
1 /*
2  * Copyright © 2011 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; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #include "ao.h"
19
20 __code uint8_t ao_log_format = AO_LOG_FORMAT_TELEMETRY;
21
22 static __data uint8_t   ao_log_monitor_pos;
23
24 void
25 ao_log_single(void)
26 {
27         ao_storage_setup();
28
29         /* This can take a while, so let the rest
30          * of the system finish booting before we start
31          */
32         ao_delay(AO_SEC_TO_TICKS(2));
33
34         ao_log_single_restart();
35         for (;;) {
36                 while (!ao_log_running)
37                         ao_sleep(&ao_log_running);
38
39                 ao_log_monitor_pos = ao_monitor_head;
40                 while (ao_log_running) {
41                         /* Write samples to EEPROM */
42                         while (ao_log_monitor_pos != ao_monitor_head) {
43                                 memcpy(&ao_log_single_write_data.telemetry,
44                                        &ao_monitor_ring[ao_log_monitor_pos],
45                                        AO_LOG_SINGLE_SIZE);
46                                 ao_log_single_write();
47                                 ao_log_monitor_pos = ao_monitor_ring_next(ao_log_monitor_pos);
48                         }
49                         /* Wait for more ADC data to arrive */
50                         ao_sleep(DATA_TO_XDATA(&ao_monitor_head));
51                 }
52         }
53 }
54
55 void
56 ao_log_single_list(void)
57 {
58         if (ao_log_current_pos != 0)
59                 printf("flight 1 start %x end %x\n",
60                        0,
61                        (uint16_t) ((ao_log_current_pos + 0xff) >> 8));
62         printf ("done\n");
63 }
64
65 void
66 ao_log_single_extra_query(void)
67 {
68 }