Version 0.24

This commit is contained in:
Daniel Beer 2016-05-14 11:50:59 +12:00
parent ffbb3eaadc
commit fb8691bf30
3 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
Version 0.24 - 14 May 2016
* Various bug fixes.
* Persistent history and tab completion with libreadline.
* Address expressions now support register names.
* Add support for new 64-bit TI library API.
Version 0.23 - 2 Mar 2015 Version 0.23 - 2 Mar 2015
* Support for raw JTAG via GPIOs. * Support for raw JTAG via GPIOs.
* Raw JTAG drivers now support single stepping and breakpoints. * Raw JTAG drivers now support single stepping and breakpoints.

View File

@ -1,4 +1,4 @@
.TH mspdebug 1 "2 Mar 2015" "Version 0.23" .TH mspdebug 1 "14 May 2016" "Version 0.24"
.SH NAME .SH NAME
MSPDebug - debugging tool for MSP430 MCUs MSPDebug - debugging tool for MSP430 MCUs
.SH SYNOPSIS .SH SYNOPSIS

View File

@ -1,5 +1,5 @@
/* MSPDebug - debugging tool for MSP430 MCUs /* MSPDebug - debugging tool for MSP430 MCUs
* Copyright (C) 2009-2015 Daniel Beer * Copyright (C) 2009-2016 Daniel Beer
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -94,8 +94,8 @@ static const struct device_class *const driver_table[] = {
}; };
static const char *version_text = static const char *version_text =
"MSPDebug version 0.23 - debugging tool for MSP430 MCUs\n" "MSPDebug version 0.24 - debugging tool for MSP430 MCUs\n"
"Copyright (C) 2009-2015 Daniel Beer <dlbeer@gmail.com>\n" "Copyright (C) 2009-2016 Daniel Beer <dlbeer@gmail.com>\n"
"This is free software; see the source for copying conditions. There is NO\n" "This is free software; see the source for copying conditions. There is NO\n"
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR " "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR "
"PURPOSE.\n"; "PURPOSE.\n";