Version 0.25.
This commit is contained in:
parent
21c0e7863c
commit
b9da911eae
|
@ -1,3 +1,10 @@
|
|||
Version 0.25 - 24 Jul 2017
|
||||
* Various bug fixes and improvements.
|
||||
* flash_bsl entry using Linux GPIO interface.
|
||||
* Raw JTAG driver now works on Spy-Bi-Wire targets.
|
||||
* Raw JTAG bus pirate driver.
|
||||
* Use HIDAPI on OS/X.
|
||||
|
||||
Version 0.24 - 14 May 2016
|
||||
* Various bug fixes.
|
||||
* Persistent history and tab completion with libreadline.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH mspdebug 1 "14 May 2016" "Version 0.24"
|
||||
.TH mspdebug 1 "24 Jul 2017" "Version 0.25"
|
||||
.SH NAME
|
||||
MSPDebug - debugging tool for MSP430 MCUs
|
||||
.SH SYNOPSIS
|
||||
|
@ -221,6 +221,8 @@ sequence is \fBDR,r,R,r,d,R:DR,r\fR, but you can override this with the
|
|||
\fBWARNING:\fR this driver unlocks the BSL by performing a mass erase.
|
||||
There are reports of this operation causing an erase of info A in some
|
||||
devices. Use at your own risk.
|
||||
.IP "\fBbus-pirate\fR"
|
||||
Raw JTAG using Bus Pirate devices.
|
||||
.SH COMMANDS
|
||||
MSPDebug can accept commands either through an interactive prompt, or
|
||||
non-interactively when specified on the command line. The supported
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* MSPDebug - debugging tool for MSP430 MCUs
|
||||
* Copyright (C) 2009-2016 Daniel Beer
|
||||
* Copyright (C) 2009-2017 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
|
||||
|
@ -95,8 +95,8 @@ static const struct device_class *const driver_table[] = {
|
|||
};
|
||||
|
||||
static const char *version_text =
|
||||
"MSPDebug version 0.24 - debugging tool for MSP430 MCUs\n"
|
||||
"Copyright (C) 2009-2016 Daniel Beer <dlbeer@gmail.com>\n"
|
||||
"MSPDebug version 0.25 - debugging tool for MSP430 MCUs\n"
|
||||
"Copyright (C) 2009-2017 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