|
From: <zw...@ma...> - 2009-06-11 09:08:48
|
Author: zwelch Date: 2009-06-11 09:08:45 +0200 (Thu, 11 Jun 2009) New Revision: 2189 Modified: trunk/src/jtag/jtag.h Log: Move jtag_get_flush_queue_count near jtag_execute_queue (fix its docs). Modified: trunk/src/jtag/jtag.h =================================================================== --- trunk/src/jtag/jtag.h 2009-06-11 07:08:34 UTC (rev 2188) +++ trunk/src/jtag/jtag.h 2009-06-11 07:08:45 UTC (rev 2189) @@ -621,9 +621,13 @@ */ extern int jtag_execute_queue(void); -/* same as jtag_execute_queue() but does not clear the error flag */ +/// same as jtag_execute_queue() but does not clear the error flag extern void jtag_execute_queue_noclear(void); +/// @returns the number of times the scan queue has been flushed +int jtag_get_flush_queue_count(void); + + /* can be implemented by hw+sw */ extern int jtag_power_dropout(int* dropout); extern int jtag_srst_asserted(int* srst_asserted); @@ -686,9 +690,6 @@ tap_state_t end_state); -/// @returns the number of times the scan queue has been flushed -int jtag_get_flush_queue_count(void); - /** * Set the current JTAG core execution error, unless one was set * by a previous call previously. Driver or application code must |