summaryrefslogtreecommitdiff
path: root/ao_gps_print.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2009-06-04 10:41:34 -0700
committerKeith Packard <keithp@keithp.com>2009-06-04 10:41:34 -0700
commit210dbaa23cdacf3a6f2d6e23493e96ee2ac9bca7 (patch)
tree42dbabd0caa7186c898da746014341d3ff31a201 /ao_gps_print.c
parent8cce307bb3156584ba17ae5a787f645dfee5fb94 (diff)
Use autotools, move altos to src subdir
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao_gps_print.c')
-rw-r--r--ao_gps_print.c46
1 files changed, 0 insertions, 46 deletions
diff --git a/ao_gps_print.c b/ao_gps_print.c
deleted file mode 100644
index 8cadd31f..00000000
--- a/ao_gps_print.c
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * Copyright © 2009 Keith Packard <keithp@keithp.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
- */
-
-#include "ao.h"
-
-void
-ao_gps_print(__xdata struct ao_gps_data *gps_data) __reentrant
-{
- printf("GPS %2d sat",
- (gps_data->flags & AO_GPS_NUM_SAT_MASK) >> AO_GPS_NUM_SAT_SHIFT);;
- if (gps_data->flags & AO_GPS_VALID) {
- printf(" %2d:%02d:%02d %2d°%2d.%04d'%c %2d°%2d.%04d'%c %5dm\n",
- gps_data->hour,
- gps_data->minute,
- gps_data->second,
- gps_data->latitude.degrees,
- gps_data->latitude.minutes,
- gps_data->latitude.minutes_fraction,
- (gps_data->flags & AO_GPS_LATITUDE_MASK) == AO_GPS_LATITUDE_NORTH ?
- 'N' : 'S',
- gps_data->longitude.degrees,
- gps_data->longitude.minutes,
- gps_data->longitude.minutes_fraction,
- (gps_data->flags & AO_GPS_LONGITUDE_MASK) == AO_GPS_LONGITUDE_WEST ?
- 'W' : 'E',
- gps_data->altitude,
- (gps_data->flags & AO_GPS_NUM_SAT_MASK) >> AO_GPS_NUM_SAT_SHIFT);
- } else {
- printf(" unlocked\n");
- }
-}
-