altosdroid: Show receiver battery voltage in the 'pad' view
[fw/altos] / altosdroid / src / org / altusmetrum / AltosDroid / TelemetryState.java
1 /*
2  * Copyright © 2012 Mike Beattie <mike@ethernal.org>
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 package org.altusmetrum.AltosDroid;
19
20 import java.util.*;
21 import org.altusmetrum.altoslib_7.*;
22 import android.location.Location;
23
24 public class TelemetryState {
25         public static final int CONNECT_NONE         = 0;
26         public static final int CONNECT_DISCONNECTED = 1;
27         public static final int CONNECT_CONNECTING   = 2;
28         public static final int CONNECT_CONNECTED    = 3;
29
30         int             connect;
31         DeviceAddress   address;
32         AltosConfigData config;
33         Location        location;
34         int             crc_errors;
35         double          receiver_battery;
36         double          frequency;
37         int             telemetry_rate;
38
39         HashMap<Integer,AltosState>     states;
40
41         int             latest_serial;
42
43         public TelemetryState() {
44                 connect = CONNECT_NONE;
45                 config = null;
46                 states = new HashMap<Integer,AltosState>();
47                 location = null;
48                 crc_errors = 0;
49                 receiver_battery = AltosLib.MISSING;
50                 frequency = AltosPreferences.frequency(0);
51                 telemetry_rate = AltosPreferences.telemetry_rate(0);
52         }
53 }