Skip to content

v0.28.2

Compare
Choose a tag to compare
@flit flit released this 12 Oct 21:43
v0.28.2
dabc470

v0.28.2 on PyPI

Boards and targets

  • Updated the flash algorithm for NXP i.MX RT1021xxxxx. (Thanks @Hoohaha.)

Fixes

  • Commander: Fix quit/exit command. (Thanks @Hoohaha.)
  • Commander: Removed (recently broken) support for using core register names as commands that print the register's value.
  • Commander: Output from system commands is captured and written to the command context output. This only visibly affects running system commands using gdb's monitor command.
  • Commander: Command parsing more closely matches shell command parsing. In particular, quotes are honoured within words, e.g. hello"my"friend is parsed as hellomyfriend. Backslash-escapes are also supported, but within quotes only quote and backslash characters can be escaped.
  • CortexM: Fix early exit of range step loop by step hook. This appeared as the inability to interrupt a statement step over an infinite loop in gdb in certain cases (when gdb used a range step command).
  • GDBServer: no longer send an unexpected response to the k (kill) command.