2 * Copyright © 2011 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.
18 package org.altusmetrum.AltosLib;
22 public class AltosEepromTeleScience {
30 public static final int AO_LOG_TELESCIENCE_START = 's';
31 public static final int AO_LOG_TELESCIENCE_DATA = 'd';
33 static final int max_data = 12;
34 public static final int record_length = 32;
36 public AltosEepromTeleScience (AltosEepromChunk chunk, int start) throws ParseException {
37 type = chunk.data(start);
39 valid = !chunk.erased(start, record_length);
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);
45 type = AltosLib.AO_LOG_INVALID;
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);