From: richardbarry Date: Sun, 9 Aug 2009 13:03:17 +0000 (+0000) Subject: Increase frequency to 99MHz. X-Git-Tag: V5.4.2~3 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b8de323da0ab2bcc2e044b9ed373a7faac8cd8f8;p=freertos Increase frequency to 99MHz. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@842 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Demo/CORTEX_LPC1768_GCC_RedSuite/src/main.c b/Demo/CORTEX_LPC1768_GCC_RedSuite/src/main.c index ccabf42eb..750bc7932 100644 --- a/Demo/CORTEX_LPC1768_GCC_RedSuite/src/main.c +++ b/Demo/CORTEX_LPC1768_GCC_RedSuite/src/main.c @@ -279,7 +279,7 @@ void prvSetupHardware( void ) /* select main OSC, 12MHz, as the PLL clock source. */ SC->CLKSRCSEL = 0x1; - SC->PLL0CFG = 0x0b; + SC->PLL0CFG = 0x20031; SC->PLL0FEED = PLLFEED_FEED1; SC->PLL0FEED = PLLFEED_FEED2; @@ -292,7 +292,7 @@ void prvSetupHardware( void ) SC->CCLKCFG = 0x03; /* Configure flash accelerator. */ - SC->FLASHCFG = 0x303a; + SC->FLASHCFG = 0x403a; /* Check lock bit status. */ while( ( ( SC->PLL0STAT & ( 1 << 26 ) ) == 0 ) );