From e6345b12381d8a5d9bfe8496db2f3beda66a3e1e Mon Sep 17 00:00:00 2001 From: Daniel Beer Date: Mon, 2 Mar 2015 10:12:03 +1300 Subject: [PATCH] Version 0.23 --- ChangeLog | 12 ++++++++++++ mspdebug.man | 2 +- ui/main.c | 6 +++--- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7eae431..67e436b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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. diff --git a/mspdebug.man b/mspdebug.man index 4716a82..ffe62fc 100644 --- a/mspdebug.man +++ b/mspdebug.man @@ -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 diff --git a/ui/main.c b/ui/main.c index 22dd3d0..328ed84 100644 --- a/ui/main.c +++ b/ui/main.c @@ -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 \n" +"MSPDebug version 0.23 - debugging tool for MSP430 MCUs\n" +"Copyright (C) 2009-2015 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";