2 * Copyright © 2013 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_9;
24 public abstract class AltosEeprom implements AltosStateUpdate {
30 public int data8(int i) {
34 public int data16(int i) {
35 return ((data8[i] | (data8[i+1] << 8)) << 16) >> 16;
38 public int data24(int i) {
39 return data8[i] | (data8[i+1] << 8) | (data8[i+2] << 16);
42 public int data32(int i) {
43 return data8[i] | (data8[i+1] << 8) | (data8[i+2] << 16) | (data8[i+3] << 24);
46 public boolean has_seconds() { return false; }
48 public int seconds() { return 0; }
50 public final static int header_length = 4;
52 public abstract int record_length();
54 public void update_state(AltosState state) {
55 if (cmd == AltosLib.AO_LOG_FLIGHT)
56 state.set_boost_tick(tick);
61 public void write(PrintStream out) {
62 out.printf("%c %04x", cmd, tick);
64 for (int i = 0; i < data8.length; i++)
65 out.printf (" %02x", data8[i]);
70 public String string() {
73 s = String.format("%c %04x", cmd, tick);
75 for (int i = 0; i < data8.length; i++) {
76 String d = String.format(" %02x", data8[i]);
84 void parse_chunk(AltosEepromChunk chunk, int start) throws ParseException {
85 cmd = chunk.data(start);
87 int data_length = record_length() - header_length;
89 valid = !chunk.erased(start, record_length());
91 if (AltosConvert.checksum(chunk.data, start, record_length()) != 0)
92 throw new ParseException(String.format("invalid checksum at 0x%x",
93 chunk.address + start), 0);
95 cmd = AltosLib.AO_LOG_INVALID;
98 tick = chunk.data16(start+2);
100 data8 = new int[data_length];
101 for (int i = 0; i < data_length; i++)
102 data8[i] = chunk.data(start + header_length + i);
105 void parse_string(String line) {
108 cmd = AltosLib.AO_LOG_INVALID;
110 int data_length = record_length() - header_length;
115 String[] tokens = line.split("\\s+");
117 if (tokens[0].length() == 1) {
118 if (tokens.length == 2 + data_length) {
119 cmd = tokens[0].codePointAt(0);
120 tick = Integer.parseInt(tokens[1],16);
122 data8 = new int[data_length];
124 for (int i = 0; i < data_length; i++)
125 data8[i] = Integer.parseInt(tokens[2 + i],16);
128 } catch (NumberFormatException ne) {