summaryrefslogtreecommitdiff
path: root/src/openocd.c
diff options
context:
space:
mode:
authordrath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2007-08-25 09:59:42 +0000
committerdrath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2007-08-25 09:59:42 +0000
commitb930514e2f3e2a83e075e8c19ae0d38bbd2b27dc (patch)
tree8671142f4ebab30173743268470b7d0a06e568a1 /src/openocd.c
parentecfc1e39a2621cf3f2d2c67841cc31cb670326c0 (diff)
downloadopenocd+libswd-b930514e2f3e2a83e075e8c19ae0d38bbd2b27dc.tar.gz
openocd+libswd-b930514e2f3e2a83e075e8c19ae0d38bbd2b27dc.tar.bz2
openocd+libswd-b930514e2f3e2a83e075e8c19ae0d38bbd2b27dc.tar.xz
openocd+libswd-b930514e2f3e2a83e075e8c19ae0d38bbd2b27dc.zip
- added support for setting JTAG frequency on ASIX PRESTO (thanks to Pavel Chromy)
- usbprog update (thanks to Benedikt Sauter) - added embeddedice_send and _handshake functions (thanks to Pavel Chromy) - added support for 4, 8 and 16 bit ports to etb.c git-svn-id: svn://svn.berlios.de/openocd/trunk@203 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/openocd.c')
-rw-r--r--src/openocd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/openocd.c b/src/openocd.c
index 94dfa8ad..26a218b9 100644
--- a/src/openocd.c
+++ b/src/openocd.c
@@ -18,7 +18,7 @@
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
-#define OPENOCD_VERSION "Open On-Chip Debugger (2007-08-21 18:30 CEST)"
+#define OPENOCD_VERSION "Open On-Chip Debugger (2007-08-25 12:00 CEST)"
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -60,7 +60,8 @@ int handle_version_command(struct command_context_s *cmd_ctx, char *cmd, char **
void exit_handler(void)
{
/* close JTAG interface */
- if (jtag && jtag->quit) jtag->quit();
+ if (jtag && jtag->quit)
+ jtag->quit();
}
int main(int argc, char *argv[])