diff options
| author | Bdale Garbee <bdale@gag.com> | 2013-12-19 01:38:40 -0700 | 
|---|---|---|
| committer | Bdale Garbee <bdale@gag.com> | 2013-12-19 01:38:40 -0700 | 
| commit | 575bbaf976c5840fd0e308549c45a466fdec1352 (patch) | |
| tree | 11bfb498348bf7687bffc24699c4b1a998988ee4 /altoslib/AltosDebug.java | |
| parent | b825116df173b77e2cab217a7b76112c742f9279 (diff) | |
| parent | bc3610d8cecbfed40c62d4dcb93fc9a4d2a7c9e3 (diff) | |
Merge branch 'branch-1.3' into debian
Conflicts:
	ChangeLog
	altoslib/AltosRecordMM.java
	altosui/Makefile.am
	altosui/altos-windows.nsi.in
	configure.ac
	debian/changelog
	debian/control
	doc/Makefile
	doc/altusmetrum.xsl
	doc/release-notes-1.2.1.xsl
	doc/release-notes-1.2.xsl
Diffstat (limited to 'altoslib/AltosDebug.java')
| -rw-r--r-- | altoslib/AltosDebug.java | 28 | 
1 files changed, 14 insertions, 14 deletions
diff --git a/altoslib/AltosDebug.java b/altoslib/AltosDebug.java index 4d8e3ae7..fb11d39a 100644 --- a/altoslib/AltosDebug.java +++ b/altoslib/AltosDebug.java @@ -15,7 +15,7 @@   * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.   */ -package org.altusmetrum.altoslib_1; +package org.altusmetrum.altoslib_2;  import java.io.*; @@ -56,13 +56,10 @@ public class AltosDebug {  	boolean	debug_mode; -	void ensure_debug_mode() { +	void ensure_debug_mode() throws InterruptedException {  		if (!debug_mode) {  			link.printf("D\n"); -			try { -				link.flush_input(); -			} catch (InterruptedException ie) { -			} +			link.flush_input();  			debug_mode = true;  		}  	} @@ -81,13 +78,16 @@ public class AltosDebug {  	}  	public void close() { -		link.close(); +		try { +			link.close(); +		} catch (InterruptedException ie) { +		}  	}  	/*  	 * Write target memory  	 */ -	public void write_memory(int address, byte[] bytes, int start, int len) { +	public void write_memory(int address, byte[] bytes, int start, int len) throws InterruptedException {  		ensure_debug_mode();  //		dump_memory("write_memory", address, bytes, start, len);  		link.printf("O %x %x\n", len, address); @@ -95,7 +95,7 @@ public class AltosDebug {  			link.printf("%02x", bytes[start + i]);  	} -	public void write_memory(int address, byte[] bytes) { +	public void write_memory(int address, byte[] bytes) throws InterruptedException {  		write_memory(address, bytes, 0, bytes.length);  	} @@ -132,7 +132,7 @@ public class AltosDebug {  	/*  	 * Write raw bytes to the debug link using the 'P' command  	 */ -	public void write_bytes(byte[] bytes) throws IOException { +	public void write_bytes(byte[] bytes) throws IOException, InterruptedException {  		int i = 0;  		ensure_debug_mode();  		while (i < bytes.length) { @@ -147,7 +147,7 @@ public class AltosDebug {  		}  	} -	public void write_byte(byte b) throws IOException { +	public void write_byte(byte b) throws IOException, InterruptedException {  		byte[] bytes = { b };  		write_bytes(bytes);  	} @@ -257,12 +257,12 @@ public class AltosDebug {  		return true;  	} -	public AltosRomconfig romconfig() { +	public AltosRomconfig romconfig() throws InterruptedException {  		try {  			byte[] bytes = read_memory(0xa0, 10); -			return new AltosRomconfig(bytes, 0); +			AltosHexfile hexfile = new AltosHexfile (bytes, 0xa0); +			return new AltosRomconfig(hexfile);  		} catch (IOException ie) { -		} catch (InterruptedException ie) {  		}  		return new AltosRomconfig();  	}  | 
