e7bef92c27648ff7702e33e35cc961b6009b06d4
[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_11.*;
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         int             crc_errors;
34         double          receiver_battery;
35         double          frequency;
36         int             telemetry_rate;
37
38         HashMap<Integer,AltosState>     states;
39
40         int             latest_serial;
41
42         public TelemetryState() {
43                 connect = CONNECT_NONE;
44                 config = null;
45                 states = new HashMap<Integer,AltosState>();
46                 crc_errors = 0;
47                 receiver_battery = AltosLib.MISSING;
48                 frequency = AltosPreferences.frequency(0);
49                 telemetry_rate = AltosPreferences.telemetry_rate(0);
50         }
51 }