This is an automated email from Gerrit. Paul Fertser ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/1804
-- gerrit commit 2dc76a65861f8d8566e5f96d1bbd42982389df71 Author: Paul Fertser <[email protected]> Date: Fri Nov 8 22:42:16 2013 +0400 target: add more tips for overcoming "timeout waiting for algorithm" Ian had SRST stuck low due to hardware issues on his custom f407 board and was rather puzzled. Additionally I added other hardware problems that can lead to the same symptoms. Change-Id: I24b3dd6337a9258b9a65a57296ba4484c0a1ef38 Reported-by: Ian <[email protected]> Signed-off-by: Paul Fertser <[email protected]> diff --git a/src/target/target.c b/src/target/target.c index 3042d5d..6028f33 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -900,7 +900,7 @@ int target_run_flash_async_algorithm(struct target *target, /* to stop an infinite loop on some targets check and increment a timeout * this issue was observed on a stellaris using the new ICDI interface */ if (timeout++ >= 500) { - LOG_ERROR("timeout waiting for algorithm, a target reset is recommended"); + LOG_ERROR("timeout waiting for algorithm; try resetting the target before performing this operation, check power supply rails, !RESET line and external clocks (if needed)"); return ERROR_FLASH_OPERATION_FAILED; } continue; -- ------------------------------------------------------------------------------ November Webinars for C, C++, Fortran Developers Accelerate application performance with scalable programming models. Explore techniques for threading, error checking, porting, and tuning. Get the most from the latest Intel processors and coprocessors. See abstracts and register http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
