Browse Source

Fix gdb.py to program last chunk of a memory range

pull/244/head
Nicolas Schodet 9 years ago
parent
commit
73ac700c6f
  1. 2
      scripts/gdb.py

2
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):

Loading…
Cancel
Save