summaryrefslogtreecommitdiff
path: root/altoslib/AltosSelfFlash.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2018-08-22 00:52:21 -0700
committerKeith Packard <keithp@keithp.com>2018-10-02 13:00:32 -0700
commit3c48b0fd504ae97dfaca91d2064b5822ca6e1344 (patch)
tree502c557cf92f0bad3c979c9cec62e409a365dce3 /altoslib/AltosSelfFlash.java
parentac8a9bc2ef301f1f18772af7d871c257a56ae70c (diff)
altoslib: Reduce debug printf spamming during flashing operation
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosSelfFlash.java')
-rw-r--r--altoslib/AltosSelfFlash.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/altoslib/AltosSelfFlash.java b/altoslib/AltosSelfFlash.java
index 20839ce4..0250cce7 100644
--- a/altoslib/AltosSelfFlash.java
+++ b/altoslib/AltosSelfFlash.java
@@ -45,7 +45,6 @@ public class AltosSelfFlash extends AltosProgrammer {
int b;
byte[] data = new byte[len];
- System.out.printf("read_memory %x %d\n", addr, len);
for (int offset = 0; offset < len; offset += 0x100) {
link.printf("R %x\n", addr + offset);
byte[] reply = link.get_binary_reply(5000, 0x100);
@@ -161,7 +160,8 @@ public class AltosSelfFlash extends AltosProgrammer {
long base = AltosRomconfig.fetch_base(image);
long bounds = AltosRomconfig.fetch_bounds(image);
- System.out.printf("rom base %x bounds %x\n", base, bounds);
+ if (link.debug)
+ System.out.printf("rom base %x bounds %x\n", base, bounds);
return read_hexfile(base, (int) (bounds - base));
} catch (AltosNoSymbol ns) {
return null;