altosui: Use helper functions to access arrays in AltosLib class
[fw/altos] / altoslib / AltosEepromTeleScience.java
1 /*
2  * Copyright © 2011 Keith Packard <keithp@keithp.com>
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.AltosLib;
19
20 import java.io.*;
21 import java.util.*;
22 import java.text.*;
23 import java.util.prefs.*;
24 import java.util.concurrent.*;
25
26 public class AltosEepromTeleScience {
27         public int      type;
28         public int      tick;
29         public int      tm_state;
30         public int      tm_tick;
31         public int[]    data;
32         public boolean  valid;
33
34         public static final int AO_LOG_TELESCIENCE_START = 's';
35         public static final int AO_LOG_TELESCIENCE_DATA = 'd';
36
37         static final int        max_data = 12;
38         public static final int record_length = 32;
39
40         public AltosEepromTeleScience (AltosEepromChunk chunk, int start) throws ParseException {
41                 type = chunk.data(start);
42
43                 valid = !chunk.erased(start, record_length);
44                 if (valid) {
45                         if (AltosConvert.checksum(chunk.data, start, record_length) != 0)
46                                 throw new ParseException(String.format("invalid checksum at 0x%x",
47                                                                        chunk.address + start), 0);
48                 } else {
49                         type = AltosLib.AO_LOG_INVALID;
50                 }
51
52                 tick = chunk.data16(start+2);
53                 tm_tick = chunk.data16(start+4);
54                 tm_state = chunk.data(start+6);
55                 data = new int[max_data];
56                 for (int i = 0; i < max_data; i++)
57                         data[i] = chunk.data16(start + 8 + i * 2);
58         }
59 }