diff --git a/scripts/gdb.py b/scripts/gdb.py index ed0b4e2..eb28ed8 100644 --- a/scripts/gdb.py +++ b/scripts/gdb.py @@ -291,7 +291,7 @@ class Target: def flash_write_prepare(self, address, data): for m in self.mem: - if (address >= m.offset) and (address + len(data) < m.offset + m.length): + if (address >= m.offset) and (address + len(data) <= m.offset + m.length): m.prog(address, data) def flash_commit(self, progress_cb=None):