altoslib: Create AltosProgrammer class
authorKeith Packard <keithp@keithp.com>
Mon, 9 Dec 2013 03:47:44 +0000 (19:47 -0800)
committerKeith Packard <keithp@keithp.com>
Mon, 9 Dec 2013 03:47:44 +0000 (19:47 -0800)
This provides an abstract interface to flashing boards, for
dongle-based and self-programming boards.

Signed-off-by: Keith Packard <keithp@keithp.com>
altoslib/AltosFlash.java
altoslib/AltosProgrammer.java [new file with mode: 0644]
altoslib/Makefile.am

index d806915797b7362512e5bd0d6643def2b9b0f342..0906f2ef0ffe74c40be2190241f4619d9f5055c2 100644 (file)
@@ -19,7 +19,7 @@ package org.altusmetrum.altoslib_2;
 
 import java.io.*;
 
-public class AltosFlash {
+public class AltosFlash extends AltosProgrammer {
        File                    file;
        FileInputStream         input;
        AltosHexfile            image;
diff --git a/altoslib/AltosProgrammer.java b/altoslib/AltosProgrammer.java
new file mode 100644 (file)
index 0000000..88777cf
--- /dev/null
@@ -0,0 +1,35 @@
+/*
+ * Copyright © 2013 Keith Packard <keithp@keithp.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+ */
+
+package org.altusmetrum.altoslib_2;
+
+import java.io.*;
+
+public abstract class AltosProgrammer {
+
+       abstract public void flash();
+
+       abstract public void close();
+
+       abstract public void abort();
+
+       abstract public AltosRomconfig romconfig();
+
+       abstract public void set_romconfig(AltosRomconfig config);
+
+
+}
\ No newline at end of file
index b95bd071b0779495f00334a0cd3e708521369634..919d098fed70c2658ae6c63d6e8c61066f4c723d 100644 (file)
@@ -73,6 +73,7 @@ altoslib_JAVA = \
        AltosParse.java \
        AltosPreferences.java \
        AltosPreferencesBackend.java \
+       AltosProgrammer.java \
        AltosReplayReader.java \
        AltosRomconfig.java \
        AltosSensorMM.java \