Version 0.14
This commit is contained in:
parent
a7e042fa78
commit
f23c230e9a
2
AUTHORS
2
AUTHORS
|
@ -1,4 +1,4 @@
|
||||||
MSPDebug is mostly written by Daniel Beer <daniel@tortek.co.nz>. Other
|
MSPDebug is mostly written by Daniel Beer <dlbeer@gmail.com>. Other
|
||||||
people who have made significant contributions are listed here.
|
people who have made significant contributions are listed here.
|
||||||
|
|
||||||
Doug Forman <doug.dougforman@gmail.com>:
|
Doug Forman <doug.dougforman@gmail.com>:
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
|
Version 0.14 - 7 Feb 2011
|
||||||
|
* Corrected email address in AUTHORS file.
|
||||||
|
* Support for new chips: MSP430F2272, MSP430F2122.
|
||||||
|
* Support for different erase types with flash_bsl driver.
|
||||||
|
* Fixed build problems on OS/X and OpenBSD.
|
||||||
|
* Bug fix: incorrect simulation of SUB/SUBC/CMP opcodes.
|
||||||
|
* Bug fix: faulty response to gdb "read registers" command.
|
||||||
|
|
||||||
Version 0.13 - 9 Nov 2010
|
Version 0.13 - 9 Nov 2010
|
||||||
* Bug fix: incorrect handling of Intel HEX segment offsets.
|
* Bug fix: incorrect handling of Intel HEX segment offsets.
|
||||||
* Support for new chips: MSP430F1121, MSP430F2131, MSP430F2617,
|
* Support for new chips: MSP430F1121, MSP430F2131, MSP430F2617,
|
||||||
|
|
4
main.c
4
main.c
|
@ -283,8 +283,8 @@ static const struct driver driver_table[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char *version_text =
|
static const char *version_text =
|
||||||
"MSPDebug version 0.13 - debugging tool for MSP430 MCUs\n"
|
"MSPDebug version 0.14 - debugging tool for MSP430 MCUs\n"
|
||||||
"Copyright (C) 2009, 2010 Daniel Beer <daniel@tortek.co.nz>\n"
|
"Copyright (C) 2009-2011 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";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH mspdebug 1 "9 Nov 2010" "Version 0.13"
|
.TH mspdebug 1 "7 Feb 2011" "Version 0.14"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
MSPDebug - debugging tool for MSP430 MCUs
|
MSPDebug - debugging tool for MSP430 MCUs
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -444,7 +444,7 @@ defaults to false, but can be set true on start-up using the \fB-q\fR
|
||||||
command-line option.
|
command-line option.
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
If you find any bugs, you should report them to the author at
|
If you find any bugs, you should report them to the author at
|
||||||
daniel@tortek.co.nz. It would help if you could include a transcript
|
dlbeer@gmail.com. It would help if you could include a transcript
|
||||||
of an MSPDebug session illustrating the program, as well as any
|
of an MSPDebug session illustrating the program, as well as any
|
||||||
relevant binaries or other files. Below, known bugs in the current
|
relevant binaries or other files. Below, known bugs in the current
|
||||||
version of MSPDebug are described.
|
version of MSPDebug are described.
|
||||||
|
@ -453,7 +453,7 @@ When using the GDB remote stub in simulation and an IO read request
|
||||||
occurs, any request to interrupt from GDB will not be acknowledged
|
occurs, any request to interrupt from GDB will not be acknowledged
|
||||||
until the IO request is either completed or aborted.
|
until the IO request is either completed or aborted.
|
||||||
.SH COPYRIGHT
|
.SH COPYRIGHT
|
||||||
Copyright (C) 2009, 2010 Daniel Beer <daniel@tortek.co.nz>
|
Copyright (C) 2009-2011 Daniel Beer <dlbeer@gmail.com>
|
||||||
|
|
||||||
MSPDebug is free software, distributed under the terms of the GNU
|
MSPDebug is free software, distributed under the terms of the GNU
|
||||||
General Public license (version 2 or later). See the file COPYING
|
General Public license (version 2 or later). See the file COPYING
|
||||||
|
|
Loading…
Reference in New Issue