Version 0.18
This commit is contained in:
parent
591a7eba9b
commit
89fe9a2fab
|
@ -1,3 +1,11 @@
|
|||
Version 0.18 - 8 Nov 2011
|
||||
* Support for new chips: MSP430F2121, MSP430F2012, MSP430F449.
|
||||
* Support for raw USB access to FET430UIF and eZ430-F2013.
|
||||
* Support for TI MSP430 library.
|
||||
* Various Win32 bug fixes.
|
||||
* GDB protocol bug fixes.
|
||||
* Section names are displayed when programming.
|
||||
|
||||
Version 0.17 - 24 Aug 2011
|
||||
* Support for new chips: MSP430FR5739, MSP430F5418,
|
||||
MSP430AFE253, MSP430F5527, MSP430F5510, MSP430F5528.
|
||||
|
|
24
mspdebug.man
24
mspdebug.man
|
@ -1,4 +1,4 @@
|
|||
.TH mspdebug 1 "24 Aug 2011" "Version 0.17"
|
||||
.TH mspdebug 1 "8 Nov 2011" "Version 0.18"
|
||||
.SH NAME
|
||||
MSPDebug - debugging tool for MSP430 MCUs
|
||||
.SH SYNOPSIS
|
||||
|
@ -465,25 +465,27 @@ renamed.
|
|||
The following chips are supported when using FET-compatible drivers:
|
||||
.PP
|
||||
.RS 0
|
||||
CC430F5133 MSP430F1612 MSP430F2370 MSP430F47197 MSP430F5527
|
||||
CC430F5133 MSP430F169 MSP430F2370 MSP430F47197 MSP430F5528
|
||||
.RS 0
|
||||
CC430F5137 MSP430F169 MSP430F247 MSP430F4784 MSP430F5528
|
||||
CC430F5137 MSP430F2012 MSP430F247 MSP430F4784 MSP430F5529
|
||||
.RS 0
|
||||
CC430F6137 MSP430F2013 MSP430F249 MSP430F5418 MSP430F5529
|
||||
CC430F6137 MSP430F2013 MSP430F249 MSP430F5418 MSP430FG4618
|
||||
.RS 0
|
||||
MSP430AFE253 MSP430F2122 MSP430F2616 MSP430F5437 MSP430FG4618
|
||||
MSP430AFE253 MSP430F2121 MSP430F2616 MSP430F5437 MSP430FR5739
|
||||
.RS 0
|
||||
MSP430F1121 MSP430F2131 MSP430F2617 MSP430F5437A MSP430FR5739
|
||||
MSP430F1121 MSP430F2122 MSP430F2617 MSP430F5437A MSP430G2231
|
||||
.RS 0
|
||||
MSP430F1232 MSP430F2132 MSP430F2618 MSP430F5438 MSP430G2231
|
||||
MSP430F1232 MSP430F2131 MSP430F2618 MSP430F5438 MSP430G2252
|
||||
.RS 0
|
||||
MSP430F147 MSP430F2234 MSP430F413 MSP430F5438A MSP430G2252
|
||||
MSP430F147 MSP430F2132 MSP430F413 MSP430F5438A MSP430G2452
|
||||
.RS 0
|
||||
MSP430F148 MSP430F2272 MSP430F427 MSP430F5510 MSP430G2452
|
||||
MSP430F148 MSP430F2234 MSP430F427 MSP430F5510 MSP430G2553
|
||||
.RS 0
|
||||
MSP430F149 MSP430F2274 MSP430F4270 MSP430F5525 MSP430G2553
|
||||
MSP430F149 MSP430F2272 MSP430F4270 MSP430F5525
|
||||
.RS 0
|
||||
MSP430F1611 MSP430F235 MSP430F47173 MSP430F5526
|
||||
MSP430F1611 MSP430F2274 MSP430F449 MSP430F5526
|
||||
.RS 0
|
||||
MSP430F1612 MSP430F235 MSP430F47173 MSP430F5527
|
||||
.SH BINARY FORMATS
|
||||
The following binary/symbol formats are supported by MSPDebug:
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ static const struct device_class *const driver_table[] = {
|
|||
};
|
||||
|
||||
static const char *version_text =
|
||||
"MSPDebug version 0.17 - debugging tool for MSP430 MCUs\n"
|
||||
"MSPDebug version 0.18 - 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 "
|
||||
|
|
Loading…
Reference in New Issue