Version 0.23

This commit is contained in:
Daniel Beer 2015-03-02 10:12:03 +13:00
parent 7ec3bc6175
commit e6345b1238
3 changed files with 16 additions and 4 deletions

View File

@ -1,3 +1,15 @@
Version 0.23 - 2 Mar 2015
* Support for raw JTAG via GPIOs.
* Raw JTAG drivers now support single stepping and breakpoints.
* Support for MSP430F5xx USB bootloader.
* Added experimental fet3/eZ-FET driver.
* Added "blow_jtag_fuse" command.
* Added "!" command for dropping to a shell.
* flash_bsl now allows custom entry/exit sequences.
* Added ROM BSL driver.
* Add support for BSL entry via GPIO toggling.
* Many bug and portability fixes.
Version 0.22 - 18 Jul 2013
* Support for erasing/programming information and bootloader
flash memories.

View File

@ -1,4 +1,4 @@
.TH mspdebug 1 "18 Jul 2013" "Version 0.22"
.TH mspdebug 1 "2 Mar 2015" "Version 0.23"
.SH NAME
MSPDebug - debugging tool for MSP430 MCUs
.SH SYNOPSIS

View File

@ -1,5 +1,5 @@
/* MSPDebug - debugging tool for MSP430 MCUs
* Copyright (C) 2009-2013 Daniel Beer
* Copyright (C) 2009-2015 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
@ -94,8 +94,8 @@ static const struct device_class *const driver_table[] = {
};
static const char *version_text =
"MSPDebug version 0.22 - debugging tool for MSP430 MCUs\n"
"Copyright (C) 2009-2013 Daniel Beer <dlbeer@gmail.com>\n"
"MSPDebug version 0.23 - debugging tool for MSP430 MCUs\n"
"Copyright (C) 2009-2015 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";