Patch by Michael Schwingen that

- adds support for the Altium universal JTAG cable
 - adds support for "wiggler2" cable (basically a wiggler with added LED, documentation coming soon)
 - adds LED support. The LED is turned on during data transfer - works fine on Altium and wiggler2.
 - adds PORT_EXIT pattern that is written to port when exiting, in order to turn off power on cables that get their power from parallel port data lines
 - move port writes (with the system-specific ifdefs) to one central function

- increased image cache size to 2KB (might require more adaptive cache handling, e.g. LRU)



git-svn-id: svn://svn.berlios.de/openocd/trunk@204 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
drath
2007-09-05 06:22:37 +00:00
parent b930514e2f
commit 6ae83f5cf8
8 changed files with 72 additions and 39 deletions
+5
View File
@@ -209,6 +209,9 @@ int bitbang_execute_queue(void)
*/
retval = ERROR_OK;
if(bitbang_interface->blink)
bitbang_interface->blink(1);
while (cmd)
{
switch (cmd->type)
@@ -278,6 +281,8 @@ int bitbang_execute_queue(void)
}
cmd = cmd->next;
}
if(bitbang_interface->blink)
bitbang_interface->blink(0);
return retval;
}