diff --git a/ChangeLog b/ChangeLog index 1fc68a5..b44d9cc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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. diff --git a/mspdebug.man b/mspdebug.man index 575c3cd..70b3938 100644 --- a/mspdebug.man +++ b/mspdebug.man @@ -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 diff --git a/ui/main.c b/ui/main.c index f9be59a..2bf278f 100644 --- a/ui/main.c +++ b/ui/main.c @@ -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 \n" +"MSPDebug version 0.25 - debugging tool for MSP430 MCUs\n" +"Copyright (C) 2009-2017 Daniel Beer \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";