2 * Copyright © 2012 Keith Packard <keithp@keithp.com>
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.
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.
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.
22 #include <ao_flight.h>
24 static __xdata struct ao_log_metrum log;
26 __code uint8_t ao_log_format = AO_LOG_FORMAT_TELEMETRUM;
29 ao_log_csum(__xdata uint8_t *b) __reentrant
34 for (i = 0; i < sizeof (struct ao_log_metrum); i++)
40 ao_log_metrum(__xdata struct ao_log_metrum *log) __reentrant
45 log->csum = ao_log_csum((__xdata uint8_t *) log);
46 ao_mutex_get(&ao_log_mutex); {
47 if (ao_log_current_pos >= ao_log_end_pos && ao_log_running)
51 ao_storage_write(ao_log_current_pos,
53 sizeof (struct ao_log_metrum));
54 ao_log_current_pos += sizeof (struct ao_log_metrum);
56 } ao_mutex_put(&ao_log_mutex);
61 ao_log_dump_check_data(void)
63 if (ao_log_csum((uint8_t *) &log) != 0)
69 static __data uint8_t ao_log_data_pos;
71 /* a hack to make sure that ao_log_metrums fill the eeprom block in even units */
72 typedef uint8_t check_log_size[1-(256 % sizeof(struct ao_log_metrum))] ;
74 #ifndef AO_SENSOR_INTERVAL_ASCENT
75 #define AO_SENSOR_INTERVAL_ASCENT 1
76 #define AO_SENSOR_INTERVAL_DESCENT 10
77 #define AO_OTHER_INTERVAL 32
83 __pdata uint16_t next_sensor, next_other;
89 while (!ao_log_running)
90 ao_sleep(&ao_log_running);
93 log.type = AO_LOG_FLIGHT;
94 log.tick = ao_sample_tick;
96 log.u.flight.ground_accel = ao_ground_accel;
98 log.u.flight.ground_pres = ao_ground_pres;
99 log.u.flight.flight = ao_flight_number;
103 /* Write the whole contents of the ring to the log
106 ao_log_data_pos = ao_data_ring_next(ao_data_head);
107 next_other = next_sensor = ao_data_ring[ao_log_data_pos].tick;
108 ao_log_state = ao_flight_startup;
110 /* Write samples to EEPROM */
111 while (ao_log_data_pos != ao_data_head) {
112 log.tick = ao_data_ring[ao_log_data_pos].tick;
113 if ((int16_t) (log.tick - next_sensor) >= 0) {
114 log.type = AO_LOG_SENSOR;
116 log.u.sensor.pres = ao_data_ring[ao_log_data_pos].ms5607_raw.pres;
117 log.u.sensor.temp = ao_data_ring[ao_log_data_pos].ms5607_raw.temp;
120 log.u.sensor.accel = ao_data_accel(&ao_data_ring[ao_log_data_pos]);
123 if (ao_log_state <= ao_flight_coast)
124 next_sensor = log.tick + AO_SENSOR_INTERVAL_ASCENT;
126 next_sensor = log.tick + AO_SENSOR_INTERVAL_DESCENT;
128 if ((int16_t) (log.tick - next_other) >= 0) {
129 log.type = AO_LOG_TEMP_VOLT;
130 log.u.volt.v_batt = ao_data_ring[ao_log_data_pos].adc.v_batt;
131 log.u.volt.sense_a = ao_data_ring[ao_log_data_pos].adc.sense_a;
132 log.u.volt.sense_m = ao_data_ring[ao_log_data_pos].adc.sense_m;
134 next_other = log.tick + AO_OTHER_INTERVAL;
136 ao_log_data_pos = ao_data_ring_next(ao_log_data_pos);
139 /* Write state change to EEPROM */
140 if (ao_flight_state != ao_log_state) {
141 ao_log_state = ao_flight_state;
142 log.type = AO_LOG_STATE;
143 log.tick = ao_time();
144 log.u.state.state = ao_log_state;
145 log.u.state.reason = 0;
148 if (ao_log_state == ao_flight_landed)
155 /* Wait for a while */
156 ao_delay(AO_MS_TO_TICKS(100));
158 /* Stop logging when told to */
159 while (!ao_log_running)
160 ao_sleep(&ao_log_running);
166 ao_log_flight(uint8_t slot)
168 if (!ao_storage_read(ao_log_pos(slot),
170 sizeof (struct ao_log_metrum)))
173 if (ao_log_dump_check_data() && log.type == AO_LOG_FLIGHT)
174 return log.u.flight.flight;