2 * Copyright © 2010 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.
25 /* EEProm command letters */
26 static final int AO_LOG_FLIGHT = 'F';
27 static final int AO_LOG_SENSOR = 'A';
28 static final int AO_LOG_TEMP_VOLT = 'T';
29 static final int AO_LOG_DEPLOY = 'D';
30 static final int AO_LOG_STATE = 'S';
31 static final int AO_LOG_GPS_TIME = 'G';
32 static final int AO_LOG_GPS_LAT = 'N';
33 static final int AO_LOG_GPS_LON = 'W';
34 static final int AO_LOG_GPS_ALT = 'H';
35 static final int AO_LOG_GPS_SAT = 'V';
36 static final int AO_LOG_GPS_DATE = 'Y';
38 /* Added for header fields in eeprom files */
39 static final int AO_LOG_CONFIG_VERSION = 1000;
40 static final int AO_LOG_MAIN_DEPLOY = 1001;
41 static final int AO_LOG_APOGEE_DELAY = 1002;
42 static final int AO_LOG_RADIO_CHANNEL = 1003;
43 static final int AO_LOG_CALLSIGN = 1004;
44 static final int AO_LOG_ACCEL_CAL = 1005;
45 static final int AO_LOG_RADIO_CAL = 1006;
46 static final int AO_LOG_MANUFACTURER = 1007;
47 static final int AO_LOG_PRODUCT = 1008;
48 static final int AO_LOG_SERIAL_NUMBER = 1009;
49 static final int AO_LOG_SOFTWARE_VERSION = 1010;
51 /* Added to flag invalid records */
52 static final int AO_LOG_INVALID = -1;
54 /* Flight state numbers and names */
55 static final int ao_flight_startup = 0;
56 static final int ao_flight_idle = 1;
57 static final int ao_flight_pad = 2;
58 static final int ao_flight_boost = 3;
59 static final int ao_flight_fast = 4;
60 static final int ao_flight_coast = 5;
61 static final int ao_flight_drogue = 6;
62 static final int ao_flight_main = 7;
63 static final int ao_flight_landed = 8;
64 static final int ao_flight_invalid = 9;
66 static HashMap<String,Integer> string_to_state = new HashMap<String,Integer>();
68 static boolean map_initialized = false;
70 static void initialize_map()
72 string_to_state.put("startup", ao_flight_startup);
73 string_to_state.put("idle", ao_flight_idle);
74 string_to_state.put("pad", ao_flight_pad);
75 string_to_state.put("boost", ao_flight_boost);
76 string_to_state.put("fast", ao_flight_fast);
77 string_to_state.put("coast", ao_flight_coast);
78 string_to_state.put("drogue", ao_flight_drogue);
79 string_to_state.put("main", ao_flight_main);
80 string_to_state.put("landed", ao_flight_landed);
81 string_to_state.put("invalid", ao_flight_invalid);
82 map_initialized = true;
85 static String[] state_to_string = {
98 static public int state(String state) {
101 if (string_to_state.containsKey(state))
102 return string_to_state.get(state);
103 return ao_flight_invalid;
106 static public String state_name(int state) {
107 if (state < 0 || state_to_string.length <= state)
109 return state_to_string[state];
112 static final int AO_GPS_VALID = (1 << 4);
113 static final int AO_GPS_RUNNING = (1 << 5);
114 static final int AO_GPS_DATE_VALID = (1 << 6);
115 static final int AO_GPS_NUM_SAT_SHIFT = 0;
116 static final int AO_GPS_NUM_SAT_MASK = 0xf;
118 static boolean isspace(int c) {
127 static boolean ishex(int c) {
128 if ('0' <= c && c <= '9')
130 if ('a' <= c && c <= 'f')
132 if ('A' <= c && c <= 'F')
137 static boolean ishex(String s) {
138 for (int i = 0; i < s.length(); i++)
139 if (!ishex(s.charAt(i)))
144 static int fromhex(int c) {
145 if ('0' <= c && c <= '9')
147 if ('a' <= c && c <= 'f')
149 if ('A' <= c && c <= 'F')
154 static int fromhex(String s) throws NumberFormatException {
156 for (int i = 0; i < s.length(); i++) {
160 throw new NumberFormatException(String.format("invalid hex \"%s\"", s));
163 v = v * 16 + fromhex(c);
168 static boolean isdec(int c) {
169 if ('0' <= c && c <= '9')
174 static boolean isdec(String s) {
175 for (int i = 0; i < s.length(); i++)
176 if (!isdec(s.charAt(i)))
181 static int fromdec(int c) {
182 if ('0' <= c && c <= '9')
187 static int fromdec(String s) throws NumberFormatException {
190 for (int i = 0; i < s.length(); i++) {
192 if (i == 0 && c == '-') {
194 } else if (!isdec(c)) {
196 throw new NumberFormatException(String.format("invalid number \"%s\"", s));
199 v = v * 10 + fromdec(c);