Label binaries with product and serial info
[fw/altos] / ao_gps_print.c
1 /*
2  * Copyright © 2009 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 void
21 ao_gps_print(__xdata struct ao_gps_data *gps_data) __reentrant
22 {
23         printf("GPS %2d sat",
24                (gps_data->flags & AO_GPS_NUM_SAT_MASK) >> AO_GPS_NUM_SAT_SHIFT);;
25         if (gps_data->flags & AO_GPS_VALID) {
26                 printf(" %2d:%02d:%02d %2d°%2d.%04d'%c %2d°%2d.%04d'%c %5dm\n",
27                        gps_data->hour,
28                        gps_data->minute,
29                        gps_data->second,
30                        gps_data->latitude.degrees,
31                        gps_data->latitude.minutes,
32                        gps_data->latitude.minutes_fraction,
33                        (gps_data->flags & AO_GPS_LATITUDE_MASK) == AO_GPS_LATITUDE_NORTH ?
34                        'N' : 'S',
35                        gps_data->longitude.degrees,
36                        gps_data->longitude.minutes,
37                        gps_data->longitude.minutes_fraction,
38                        (gps_data->flags & AO_GPS_LONGITUDE_MASK) == AO_GPS_LONGITUDE_WEST ?
39                        'W' : 'E',
40                        gps_data->altitude,
41                        (gps_data->flags & AO_GPS_NUM_SAT_MASK) >> AO_GPS_NUM_SAT_SHIFT);
42         } else {
43                 printf(" unlocked\n");
44         }
45 }
46