2 * Copyright © 2015 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.
18 package org.altusmetrum.altoslib_5;
20 import java.util.concurrent.TimeoutException;
22 public class AltosSensorTGPS {
26 static public void update_state(AltosState state, AltosLink link, AltosConfigData config_data) throws InterruptedException {
28 AltosSensorTGPS sensor_tgps = new AltosSensorTGPS(link);
30 if (sensor_tgps == null)
32 state.set_battery_voltage(AltosConvert.tele_gps_voltage(sensor_tgps.batt));
34 } catch (TimeoutException te) {
38 public AltosSensorTGPS(AltosLink link) throws InterruptedException, TimeoutException {
39 String[] items = link.adc();
40 for (int i = 0; i < items.length - 1;) {
41 if (items[i].equals("tick:")) {
42 tick = Integer.parseInt(items[i+1]);
46 if (items[i].equals("batt:")) {
47 batt = Integer.parseInt(items[i+1]);