Version 0.16
This commit is contained in:
parent
6de45248f8
commit
e50edfd347
|
@ -1,3 +1,10 @@
|
|||
Version 0.16 - 14 Jun 2011
|
||||
* Support for new chips: MSP430G2252, MSP430G2553, MSP430F235,
|
||||
MSP430F427.
|
||||
* Added GDB client driver.
|
||||
* Added support for Olimex MSP-JTAG-TINY rev 2.
|
||||
* Bug fix in flash-bsl driver for large memory transfers.
|
||||
|
||||
Version 0.15 - 5 Apr 2011
|
||||
* Support for new chips: MSP430G2452, MSP430F5525,
|
||||
MSP430F47173, MSP430F5526.
|
||||
|
|
2
main.c
2
main.c
|
@ -70,7 +70,7 @@ static const struct device_class *const driver_table[] = {
|
|||
};
|
||||
|
||||
static const char *version_text =
|
||||
"MSPDebug version 0.15 - debugging tool for MSP430 MCUs\n"
|
||||
"MSPDebug version 0.16 - debugging tool for MSP430 MCUs\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"
|
||||
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR "
|
||||
|
|
23
mspdebug.man
23
mspdebug.man
|
@ -1,4 +1,4 @@
|
|||
.TH mspdebug 1 "5 Apr 2011" "Version 0.15"
|
||||
.TH mspdebug 1 "14 Jun 2011" "Version 0.16"
|
||||
.SH NAME
|
||||
MSPDebug - debugging tool for MSP430 MCUs
|
||||
.SH SYNOPSIS
|
||||
|
@ -443,6 +443,27 @@ Rename symbols by searching for those matching the given regular
|
|||
expression and substituting the given string for the matched portion. The
|
||||
symbols renamed are displayed, as well as a total count of all symbols
|
||||
renamed.
|
||||
.SH SUPPORTED CHIPS
|
||||
The following chips are supported when using FET-compatible drivers:
|
||||
.PP
|
||||
.RS 0
|
||||
CC430F5133 MSP430F1612 MSP430F235 MSP430F4270 MSP430F5526
|
||||
.RS 0
|
||||
CC430F5137 MSP430F169 MSP430F2370 MSP430F47173 MSP430F5529
|
||||
.RS 0
|
||||
CC430F6137 MSP430F2013 MSP430F247 MSP430F47197 MSP430FG4618
|
||||
.RS 0
|
||||
MSP430F1121 MSP430F2122 MSP430F249 MSP430F4784 MSP430G2231
|
||||
.RS 0
|
||||
MSP430F1232 MSP430F2131 MSP430F2616 MSP430F5437 MSP430G2252
|
||||
.RS 0
|
||||
MSP430F147 MSP430F2132 MSP430F2617 MSP430F5437A MSP430G2452
|
||||
.RS 0
|
||||
MSP430F148 MSP430F2234 MSP430F2618 MSP430F5438 MSP430G2553
|
||||
.RS 0
|
||||
MSP430F149 MSP430F2272 MSP430F413 MSP430F5438A
|
||||
.RS 0
|
||||
MSP430F1611 MSP430F2274 MSP430F427 MSP430F5525
|
||||
.SH BINARY FORMATS
|
||||
The following binary/symbol formats are supported by MSPDebug:
|
||||
|
||||
|
|
Loading…
Reference in New Issue