Version 0.22
This commit is contained in:
parent
8bec81f576
commit
06f6613442
14
ChangeLog
14
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.
|
||||
|
|
|
@ -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 <dlbeer@gmail.com>
|
||||
Copyright (C) 2009-2013 Daniel Beer <dlbeer@gmail.com>
|
||||
|
||||
MSPDebug is free software, distributed under the terms of the GNU
|
||||
General Public license (version 2 or later). See the file COPYING
|
||||
|
|
|
@ -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 <dlbeer@gmail.com>\n"
|
||||
"MSPDebug version 0.22 - debugging tool for MSP430 MCUs\n"
|
||||
"Copyright (C) 2009-2013 Daniel Beer <dlbeer@gmail.com>\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";
|
||||
|
|
Loading…
Reference in New Issue