Bump java library versions
[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 org.altusmetrum.altoslib_6.*;
21 import android.location.Location;
22
23 public class TelemetryState {
24         public static final int CONNECT_NONE       = 0;
25         public static final int CONNECT_READY      = 1;
26         public static final int CONNECT_CONNECTING = 2;
27         public static final int CONNECT_CONNECTED  = 3;
28
29         int             connect;
30         AltosConfigData config;
31         AltosState      state;
32         Location        location;
33         int             crc_errors;
34         double          frequency;
35         int             telemetry_rate;
36
37         public TelemetryState() {
38                 connect = CONNECT_NONE;
39                 config = null;
40                 state = null;
41                 location = null;
42                 crc_errors = 0;
43                 frequency = AltosPreferences.frequency(0);
44                 telemetry_rate = AltosPreferences.telemetry_rate(0);
45         }
46 }