diff options
| author | drath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2006-08-17 14:53:15 +0000 | 
|---|---|---|
| committer | drath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2006-08-17 14:53:15 +0000 | 
| commit | 5fcd1d704cea078f6651e8e928ce7ff67b283882 (patch) | |
| tree | 2adc2d71513793359bef126d05448f0e22a259be /src/flash/str7x.c | |
| parent | 9a830747b2324cc1f319c32399e76f759bd5f0e6 (diff) | |
| download | openocd+libswd-5fcd1d704cea078f6651e8e928ce7ff67b283882.tar.gz openocd+libswd-5fcd1d704cea078f6651e8e928ce7ff67b283882.tar.bz2 openocd+libswd-5fcd1d704cea078f6651e8e928ce7ff67b283882.tar.xz openocd+libswd-5fcd1d704cea078f6651e8e928ce7ff67b283882.zip | |
- renamed jtag_interface_t.support_statemove to jtag_interface_t.support_pathmove (it is used to indicate jtag_add_pathmove support)
- fixed small bug in str7x.c that printed an address instead of the target number in an error message
- added support for Olimex ARM-USB-OCD. The new ft2232 layout is called "olimex-jtag"
git-svn-id: svn://svn.berlios.de/openocd/trunk@87 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/flash/str7x.c')
| -rw-r--r-- | src/flash/str7x.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/flash/str7x.c b/src/flash/str7x.c index 4d8d02e4..b7081208 100644 --- a/src/flash/str7x.c +++ b/src/flash/str7x.c @@ -166,7 +166,7 @@ int str7x_flash_bank_command(struct command_context_s *cmd_ctx, char *cmd, char  	str7x_info->target = get_target_by_num(strtoul(args[6], NULL, 0));  	if (!str7x_info->target)  	{ -		ERROR("no target '%i' configured", args[6]); +		ERROR("no target '%s' configured", args[6]);  		exit(-1);  	} | 
