mirror of
https://github.com/hoglet67/AtomBusMon.git
synced 2025-01-21 14:30:40 +00:00
Firmware: correct a superfluous warning message
Change-Id: I877fc5add297358445a5250b245660ca741c7930
This commit is contained in:
parent
3b90dc82fc
commit
da3651abf2
@ -736,15 +736,19 @@ int lookupBreakpointN(int n) {
|
||||
}
|
||||
if (n < numbkpts) {
|
||||
return n;
|
||||
} else {
|
||||
return -1;
|
||||
}
|
||||
log0("Breakpoint/watch not set at %04X\n", n);
|
||||
return -1;
|
||||
}
|
||||
|
||||
int lookupBreakpoint(char *params) {
|
||||
int n = -1;
|
||||
sscanf(params, "%x", &n);
|
||||
return lookupBreakpointN(n);
|
||||
n = lookupBreakpointN(n);
|
||||
if (n < 0) {
|
||||
log0("Breakpoint/watch not set at %04X\n", n);
|
||||
}
|
||||
return n;
|
||||
}
|
||||
|
||||
// Enable/Disable single stepping
|
||||
|
Loading…
x
Reference in New Issue
Block a user