Change AltosLib to altoslib
[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.text.*;
21
22 public class AltosEepromTeleScience {
23         public int      type;
24         public int      tick;
25         public int      tm_state;
26         public int      tm_tick;
27         public int[]    data;
28         public boolean  valid;
29
30         public static final int AO_LOG_TELESCIENCE_START = 's';
31         public static final int AO_LOG_TELESCIENCE_DATA = 'd';
32
33         static final int        max_data = 12;
34         public static final int record_length = 32;
35
36         public AltosEepromTeleScience (AltosEepromChunk chunk, int start) throws ParseException {
37                 type = chunk.data(start);
38
39                 valid = !chunk.erased(start, record_length);
40                 if (valid) {
41                         if (AltosConvert.checksum(chunk.data, start, record_length) != 0)
42                                 throw new ParseException(String.format("invalid checksum at 0x%x",
43                                                                        chunk.address + start), 0);
44                 } else {
45                         type = AltosLib.AO_LOG_INVALID;
46                 }
47
48                 tick = chunk.data16(start+2);
49                 tm_tick = chunk.data16(start+4);
50                 tm_state = chunk.data(start+6);
51                 data = new int[max_data];
52                 for (int i = 0; i < max_data; i++)
53                         data[i] = chunk.data16(start + 8 + i * 2);
54         }
55 }