Version 0.21
This commit is contained in:
parent
21fc0d904f
commit
5477cd78d8
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
Version 0.21 - 26 Nov 2012
|
||||
* Support for flat binary files.
|
||||
* Bug fixes and refactoring of drivers.
|
||||
* Support for UIF BSL access via USB.
|
||||
* Support for Olimex MSP430-JTAG-ISO-MK2, including power
|
||||
profiling.
|
||||
* Support for parallel JTAG.
|
||||
* Support for many new chips when using Olimex drivers.
|
||||
* Add new interface mode for use with front-ends.
|
||||
|
||||
Version 0.20 - 14 Aug 2012
|
||||
* Support for new chips: MSP430F6736, MSP430F2252, MSP430G2403,
|
||||
MSP430F6435.
|
||||
|
|
43
mspdebug.man
43
mspdebug.man
|
@ -1,4 +1,4 @@
|
|||
.TH mspdebug 1 "14 Aug 2012" "Version 0.20"
|
||||
.TH mspdebug 1 "26 Nov 2012" "Version 0.21"
|
||||
.SH NAME
|
||||
MSPDebug - debugging tool for MSP430 MCUs
|
||||
.SH SYNOPSIS
|
||||
|
@ -544,47 +544,6 @@ byte.
|
|||
Compare the contents of a raw binary file to the device memory at the given
|
||||
address. If any differences are found, a message is printed for the first
|
||||
mismatched byte.
|
||||
.SH SUPPORTED CHIPS
|
||||
The following chips are supported when using FET-compatible drivers:
|
||||
.PP
|
||||
.RS 0
|
||||
CC430F5133 MSP430F2252 MSP430F5342
|
||||
.RS 0
|
||||
CC430F5137 MSP430F2272 MSP430F5418
|
||||
.RS 0
|
||||
CC430F6137 MSP430F2274 MSP430F5437
|
||||
.RS 0
|
||||
MSP430AFE253 MSP430F235 MSP430F5437A
|
||||
.RS 0
|
||||
MSP430F1121 MSP430F2370 MSP430F5438
|
||||
.RS 0
|
||||
MSP430F1232 MSP430F2418 MSP430F5438A
|
||||
.RS 0
|
||||
MSP430F147 MSP430F247 MSP430F5510
|
||||
.RS 0
|
||||
MSP430F148 MSP430F249 MSP430F5525
|
||||
.RS 0
|
||||
MSP430F149 MSP430F2616 MSP430F5526
|
||||
.RS 0
|
||||
MSP430F1611 MSP430F2617 MSP430F5527
|
||||
.RS 0
|
||||
MSP430F1612 MSP430F2618 MSP430F5528
|
||||
.RS 0
|
||||
MSP430F169 MSP430F413 MSP430F5529
|
||||
.RS 0
|
||||
MSP430F2012/G2231 MSP430F427 MSP430F6435
|
||||
.RS 0
|
||||
MSP430F2013 MSP430F4270 MSP430F6736
|
||||
.RS 0
|
||||
MSP430F2121 MSP430F449 MSP430FG4618
|
||||
.RS 0
|
||||
MSP430F2122 MSP430F47173 MSP430FR5739
|
||||
.RS 0
|
||||
MSP430F2131 MSP430F47197 MSP430G2252
|
||||
.RS 0
|
||||
MSP430F2132 MSP430F4784 MSP430G2452
|
||||
.RS 0
|
||||
MSP430F2234 MSP430F5329 MSP430G2553/G2403
|
||||
.SH BINARY FORMATS
|
||||
The following binary/symbol formats are supported by MSPDebug:
|
||||
|
||||
|
|
|
@ -81,7 +81,7 @@ static const struct device_class *const driver_table[] = {
|
|||
};
|
||||
|
||||
static const char *version_text =
|
||||
"MSPDebug version 0.20 - debugging tool for MSP430 MCUs\n"
|
||||
"MSPDebug version 0.21 - debugging tool for MSP430 MCUs\n"
|
||||
"Copyright (C) 2009-2012 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