2 * Copyright © 2009 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; version 2 of the License.
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.
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.
20 #include "ao_flight.h"
23 #error Must define HAS_MONITOR to 1
26 #ifndef LEGACY_MONITOR
27 #error Must define LEGACY_MONITOR
30 #ifndef HAS_MONITOR_PUT
31 #define HAS_MONITOR_PUT 1
34 #ifndef AO_MONITOR_LED
35 #error Must define AO_MONITOR_LED
38 __data uint8_t ao_monitoring;
39 static __data uint8_t ao_monitor_disabled;
40 static __data uint8_t ao_internal_monitoring;
41 static __data uint8_t ao_external_monitoring;
43 __xdata union ao_monitor ao_monitor_ring[AO_MONITOR_RING];
45 __data uint8_t ao_monitor_head;
48 _ao_monitor_adjust(void)
51 ao_radio_recv_abort();
52 if (ao_monitor_disabled)
55 if (ao_external_monitoring)
56 ao_monitoring = ao_external_monitoring;
58 ao_monitoring = ao_internal_monitoring;
60 ao_wakeup(DATA_TO_XDATA(&ao_monitoring));
69 switch (ao_monitoring) {
71 ao_sleep(DATA_TO_XDATA(&ao_monitoring));
74 case AO_MONITORING_ORIG:
75 size = sizeof (struct ao_telemetry_orig_recv);
79 if (ao_monitoring > AO_MAX_TELEMETRY)
80 ao_monitoring = AO_MAX_TELEMETRY;
84 if (!ao_radio_recv(&ao_monitor_ring[ao_monitor_head], size + 2))
86 ao_monitor_head = ao_monitor_ring_next(ao_monitor_head);
87 ao_wakeup(DATA_TO_XDATA(&ao_monitor_head));
92 __xdata struct ao_task ao_monitor_blink_task;
95 ao_monitor_blink(void)
98 ao_sleep(DATA_TO_XDATA(&ao_monitor_head));
99 ao_led_for(AO_MONITOR_LED, AO_MS_TO_TICKS(100));
106 static const char xdigit[16] = {
107 '0', '1', '2', '3', '4', '5', '6', '7',
108 '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'
111 #define hex(c) do { putchar(xdigit[(c) >> 4]); putchar(xdigit[(c)&0xf]); } while (0)
117 __xdata char callsign[AO_MAX_CALLSIGN+1];
120 uint8_t ao_monitor_tail;
123 __xdata union ao_monitor *m;
125 #define recv_raw ((m->raw))
126 #define recv_orig ((m->orig))
127 #define recv_tiny ((m->tiny))
129 ao_monitor_tail = ao_monitor_head;
131 while (!ao_external_monitoring)
132 ao_sleep(DATA_TO_XDATA(&ao_external_monitoring));
133 while (ao_monitor_tail == ao_monitor_head && ao_external_monitoring)
134 ao_sleep(DATA_TO_XDATA(&ao_monitor_head));
135 if (!ao_external_monitoring)
137 m = &ao_monitor_ring[ao_monitor_tail];
138 ao_monitor_tail = ao_monitor_ring_next(ao_monitor_tail);
139 switch (ao_monitoring) {
143 case AO_MONITORING_ORIG:
144 state = recv_orig.telemetry_orig.flight_state;
146 rssi = (int16_t) AO_RSSI_FROM_RADIO(recv_orig.rssi);
147 ao_xmemcpy(callsign, recv_orig.telemetry_orig.callsign, AO_MAX_CALLSIGN);
148 if (state > ao_flight_invalid)
149 state = ao_flight_invalid;
150 if (recv_orig.status & PKT_APPEND_STATUS_1_CRC_OK) {
152 /* General header fields */
153 printf(AO_TELEM_VERSION " %d "
155 AO_TELEM_SERIAL " %d "
156 AO_TELEM_FLIGHT " %d "
158 AO_TELEM_STATE " %s "
159 AO_TELEM_TICK " %d ",
160 AO_TELEMETRY_VERSION,
162 recv_orig.telemetry_orig.serial,
163 recv_orig.telemetry_orig.flight,
165 ao_state_names[state],
166 recv_orig.telemetry_orig.adc.tick);
168 /* Raw sensor values */
169 printf(AO_TELEM_RAW_ACCEL " %d "
170 AO_TELEM_RAW_BARO " %d "
171 AO_TELEM_RAW_THERMO " %d "
172 AO_TELEM_RAW_BATT " %d "
173 AO_TELEM_RAW_DROGUE " %d "
174 AO_TELEM_RAW_MAIN " %d ",
175 recv_orig.telemetry_orig.adc.accel,
176 recv_orig.telemetry_orig.adc.pres,
177 recv_orig.telemetry_orig.adc.temp,
178 recv_orig.telemetry_orig.adc.v_batt,
179 recv_orig.telemetry_orig.adc.sense_d,
180 recv_orig.telemetry_orig.adc.sense_m);
182 /* Sensor calibration values */
183 printf(AO_TELEM_CAL_ACCEL_GROUND " %d "
184 AO_TELEM_CAL_BARO_GROUND " %d "
185 AO_TELEM_CAL_ACCEL_PLUS " %d "
186 AO_TELEM_CAL_ACCEL_MINUS " %d ",
187 recv_orig.telemetry_orig.ground_accel,
188 recv_orig.telemetry_orig.ground_pres,
189 recv_orig.telemetry_orig.accel_plus_g,
190 recv_orig.telemetry_orig.accel_minus_g);
192 if (recv_orig.telemetry_orig.u.k.unused == 0x8000) {
193 /* Kalman state values */
194 printf(AO_TELEM_KALMAN_HEIGHT " %d "
195 AO_TELEM_KALMAN_SPEED " %d "
196 AO_TELEM_KALMAN_ACCEL " %d ",
197 recv_orig.telemetry_orig.height,
198 recv_orig.telemetry_orig.u.k.speed,
199 recv_orig.telemetry_orig.accel);
201 /* Ad-hoc flight values */
202 printf(AO_TELEM_ADHOC_ACCEL " %d "
203 AO_TELEM_ADHOC_SPEED " %ld "
204 AO_TELEM_ADHOC_BARO " %d ",
205 recv_orig.telemetry_orig.accel,
206 recv_orig.telemetry_orig.u.flight_vel,
207 recv_orig.telemetry_orig.height);
209 ao_gps_print(&recv_orig.telemetry_orig.gps);
210 ao_gps_tracking_print(&recv_orig.telemetry_orig.gps_tracking);
216 printf("CRC INVALID RSSI %3d\n", rssi);
219 #endif /* LEGACY_MONITOR */
223 extern uint32_t ao_rx_start_tick, ao_rx_packet_tick, ao_rx_done_tick, ao_rx_last_done_tick;
224 extern uint32_t ao_fec_decode_start, ao_fec_decode_end;
226 printf ("between packet: %d\n", ao_rx_start_tick - ao_rx_last_done_tick);
227 printf ("receive start delay: %d\n", ao_rx_packet_tick - ao_rx_start_tick);
228 printf ("decode time: %d\n", ao_fec_decode_end - ao_fec_decode_start);
229 printf ("rx cleanup: %d\n", ao_rx_done_tick - ao_fec_decode_end);
233 hex((uint8_t) (ao_monitoring + 2));
235 for (state = 0; state < ao_monitoring + 2; state++) {
236 byte = recv_raw.packet[state];
243 if (recv_raw.packet[ao_monitoring + 1] & PKT_APPEND_STATUS_1_CRC_OK) {
244 rssi = AO_RSSI_FROM_RADIO(recv_raw.packet[ao_monitoring]);
254 __xdata struct ao_task ao_monitor_put_task;
257 __xdata struct ao_task ao_monitor_get_task;
260 ao_monitor_set(uint8_t monitoring)
262 ao_internal_monitoring = monitoring;
263 _ao_monitor_adjust();
267 ao_monitor_disable(void)
269 ++ao_monitor_disabled;
270 _ao_monitor_adjust();
274 ao_monitor_enable(void)
276 --ao_monitor_disabled;
277 _ao_monitor_adjust();
285 ao_external_monitoring = ao_cmd_lex_i;
286 ao_wakeup(DATA_TO_XDATA(&ao_external_monitoring));
287 ao_wakeup(DATA_TO_XDATA(&ao_monitor_head));
288 _ao_monitor_adjust();
291 __code struct ao_cmds ao_monitor_cmds[] = {
292 { set_monitor, "m <0 off, 1 old, 20 std>\0Set radio monitoring" },
298 ao_monitor_init(void) __reentrant
301 ao_cmd_register(&ao_monitor_cmds[0]);
302 ao_add_task(&ao_monitor_put_task, ao_monitor_put, "monitor_put");
304 ao_add_task(&ao_monitor_get_task, ao_monitor_get, "monitor_get");
306 ao_add_task(&ao_monitor_blink_task, ao_monitor_blink, "monitor_blink");