diff --git a/ChangeLog b/ChangeLog index 9414abb..7eae431 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +Version 0.22 - 18 Jul 2013 + * Support for erasing/programming information and bootloader + flash memories. + * Support for new chips: MSP430G2352, MSP430FG4616, + MSP430FR5728, MSP430G2955, MSP430FR5729. + * Windows build fixes. + * Various fixes for disassembly and simulation of some types of + instructions. + * Fixed segment erase for FET-like and tilib drivers. + * Support for alternative and directory-local configuration + files. + * Fixes for Intel HEX file generation. + * Fixed drivers for Olimex MSP430-JTAG-TINY rev 1. + Version 0.21 - 26 Nov 2012 * Support for flat binary files. * Bug fixes and refactoring of drivers. diff --git a/mspdebug.man b/mspdebug.man index b8fcc6c..e7cdd94 100644 --- a/mspdebug.man +++ b/mspdebug.man @@ -1,4 +1,4 @@ -.TH mspdebug 1 "26 Nov 2012" "Version 0.21" +.TH mspdebug 1 "18 Jul 2013" "Version 0.22" .SH NAME MSPDebug - debugging tool for MSP430 MCUs .SH SYNOPSIS @@ -67,7 +67,7 @@ of the standard 16-byte password. Display a brief help message and exit. .IP "\-\-fet\-list" Display a list of chips supported by the FET driver (the driver used -for UIF, RF2500 and Olimex devices)> +for UIF, RF2500 and Olimex devices). .IP "\-\-fet\-force\-id \fIstring\fR" When using a FET device, force the connected chip to be recognised by MSPDebug as one of the given type during initialization. This overrides @@ -757,7 +757,7 @@ dlbeer@gmail.com. It would help if you could include a transcript of an MSPDebug session illustrating the program, as well as any relevant binaries or other files. .SH COPYRIGHT -Copyright (C) 2009-2012 Daniel Beer +Copyright (C) 2009-2013 Daniel Beer MSPDebug is free software, distributed under the terms of the GNU General Public license (version 2 or later). See the file COPYING diff --git a/ui/main.c b/ui/main.c index 3590eb1..364a992 100644 --- a/ui/main.c +++ b/ui/main.c @@ -1,5 +1,5 @@ /* MSPDebug - debugging tool for MSP430 MCUs - * Copyright (C) 2009-2012 Daniel Beer + * Copyright (C) 2009-2013 Daniel Beer * * 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 @@ -86,8 +86,8 @@ static const struct device_class *const driver_table[] = { }; static const char *version_text = -"MSPDebug version 0.21 - debugging tool for MSP430 MCUs\n" -"Copyright (C) 2009-2012 Daniel Beer \n" +"MSPDebug version 0.22 - debugging tool for MSP430 MCUs\n" +"Copyright (C) 2009-2013 Daniel Beer \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 " "PURPOSE.\n";