This one helped me out of a miscompare ambiguity while testing the XSVF player.

I am trying hard to get re-synchronized. There are a few more small patches, all leading up to the big new xsvf player whose patch will come in a couple days. That is almost a full rewrite. I cannot test it at the moment. Waiting for more board prototypes on Tuesday or so.


Dick

Index: src/jtag/jtag.c
===================================================================
--- src/jtag/jtag.c	(revision 1260)
+++ src/jtag/jtag.c	(working copy)
@@ -1300,7 +1300,7 @@
				{
					if (cmd->fields[i].in_handler(cmd->fields[i].in_value, cmd->fields[i].in_handler_priv, cmd->fields+i) != ERROR_OK)
					{
-						LOG_WARNING("in_handler reported a failed check");
+						LOG_WARNING("in_handler: with \"in_value\", mismatch in %s", cmd->ir_scan ? "SIR" : "SDR" );
						retval = ERROR_JTAG_QUEUE_FAILED;
					}
				}
@@ -1314,7 +1314,7 @@
					/* We're going to call the error:handler later, but if the in_handler
					 * reported an error we report this failure upstream
					 */
-					LOG_WARNING("in_handler reported a failed check");
+					LOG_WARNING("in_handler: w/o \"in_value\", mismatch in %s",  cmd->ir_scan ? "SIR" : "SDR" );
					retval = ERROR_JTAG_QUEUE_FAILED;
				}
			}
_______________________________________________
Openocd-development mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/openocd-development

Reply via email to