altos: Rename 'core' to 'kernel'
[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 void
23 ao_gps_show(void) __reentrant
24 {
25         uint8_t i;
26         ao_mutex_get(&ao_gps_mutex);
27         printf ("Date: %02d/%02d/%02d\n", ao_gps_data.year, ao_gps_data.month, ao_gps_data.day);
28         printf ("Time: %02d:%02d:%02d\n", ao_gps_data.hour, ao_gps_data.minute, ao_gps_data.second);
29         printf ("Lat/Lon: %ld %ld\n", (long) ao_gps_data.latitude, (long) ao_gps_data.longitude);
30         printf ("Alt: %d\n", ao_gps_data.altitude);
31         printf ("Flags: 0x%x\n", ao_gps_data.flags);
32         printf ("Sats: %d", ao_gps_tracking_data.channels);
33         for (i = 0; i < ao_gps_tracking_data.channels; i++)
34                 printf (" %d %d",
35                         ao_gps_tracking_data.sats[i].svid,
36                         ao_gps_tracking_data.sats[i].c_n_1);
37         printf ("\ndone\n");
38         ao_mutex_put(&ao_gps_mutex);
39 }