File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/org/deepjava/openOCDInterface Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -180,8 +180,8 @@ public int getTargetState() throws TargetConnectionException {
180
180
public void startTarget (int address ) throws TargetConnectionException {
181
181
try {
182
182
if (address != -1 ) {
183
- if (dbg ) StdStreams .vrb .println ("[TARGET] arm: Starting from 0x" + Integer .toHexString (address ));
184
- out .write ((("resume " + address + "\r \n " ).getBytes ()));
183
+ if (dbg ) StdStreams .vrb .println ("[TARGET] arm: Starting from 0x" + Integer .toHexString (address ));
184
+ out .write ((("resume " + address + "\r \n " ).getBytes ()));
185
185
} else {
186
186
if (dbg ) StdStreams .vrb .println ("[TARGET] Resume target" );
187
187
out .write (("resume\r \n " .getBytes ()));
@@ -344,7 +344,7 @@ public void downloadImageFile(String filename) throws TargetConnectionException
344
344
name = name .replace ('\\' , '/' );
345
345
StdStreams .log .println ("Downloading " + name );
346
346
out .write ((("load_image " + name + " " + file .getValue () + " \r \n " ).getBytes ()));
347
- if (dbg ) StdStreams .vrb .println ("[TARGET] loading: " + name );
347
+ if (dbg ) StdStreams .vrb .println ("[TARGET] loading: " + name + " to addr 0x" + Integer . toHexString ( file . getValue ()) );
348
348
buf = new StringBuffer ();
349
349
while (true ) {
350
350
int n = in .available ();
You can’t perform that action at this time.
0 commit comments