This is an automated email from Gerrit. Spencer Oliver (s...@spen-soft.co.uk) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/389
-- gerrit commit 627892eb8675e69a41eb159b26f8f06a9da4eb49 Author: Spencer Oliver <s...@spen-soft.co.uk> Date: Tue Jan 17 16:05:44 2012 +0000 flash: update stellaris_set_flash_timing for target class stellaris_set_flash_timing should only be used for Sandstorm and Fury device classes. Change-Id: Ib5eff9d954c039f2c5726a8ecc3ee45d1694cfd3 Signed-off-by: Spencer Oliver <s...@spen-soft.co.uk> diff --git a/src/flash/nor/stellaris.c b/src/flash/nor/stellaris.c index 69a9d05..b14c078 100644 --- a/src/flash/nor/stellaris.c +++ b/src/flash/nor/stellaris.c @@ -528,6 +528,10 @@ static void stellaris_set_flash_timing(struct flash_bank *bank) struct target *target = bank->target; uint32_t usecrl = (stellaris_info->mck_freq/1000000ul-1); + /* only valid for Sandstorm and Fury class devices */ + if (stellaris_info->target_class < 2) + return; + LOG_DEBUG("usecrl = %i",(int)(usecrl)); target_write_u32(target, SCB_BASE | USECRL, usecrl); } -- ------------------------------------------------------------------------------ Keep Your Developer Skills Current with LearnDevNow! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, Metro Style Apps, more. Free future releases when you subscribe now! http://p.sf.net/sfu/learndevnow-d2d _______________________________________________ OpenOCD-devel mailing list OpenOCD-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/openocd-devel