altos: Remove old AO_SEND_ALL_BARO bits
[fw/altos] / src / kernel / ao_gps_show.c
1 /*
2  * Copyright © 2013 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 #ifndef AO_GPS_TEST
19 #include <ao.h>
20 #endif
21
22 #include <ao_data.h>
23
24 void
25 ao_gps_show(void) __reentrant
26 {
27         uint8_t i;
28         ao_mutex_get(&ao_gps_mutex);
29         printf ("Date: %02d/%02d/%02d\n", ao_gps_data.year, ao_gps_data.month, ao_gps_data.day);
30         printf ("Time: %02d:%02d:%02d\n", ao_gps_data.hour, ao_gps_data.minute, ao_gps_data.second);
31         printf ("Lat/Lon: %ld %ld\n", (long) ao_gps_data.latitude, (long) ao_gps_data.longitude);
32 #if HAS_WIDE_GPS
33         printf ("Alt: %ld\n", (long) AO_TELEMETRY_LOCATION_ALTITUDE(&ao_gps_data));
34 #else
35         printf ("Alt: %d\n", AO_TELEMETRY_LOCATION_ALTITUDE(&ao_gps_data));
36 #endif
37         printf ("Flags: 0x%x\n", ao_gps_data.flags);
38         printf ("Sats: %d", ao_gps_tracking_data.channels);
39         for (i = 0; i < ao_gps_tracking_data.channels; i++)
40                 printf (" %d %d",
41                         ao_gps_tracking_data.sats[i].svid,
42                         ao_gps_tracking_data.sats[i].c_n_1);
43         printf ("\ndone\n");
44         ao_mutex_put(&ao_gps_mutex);
45 }