| gurong60 发表于 2013-5-13 20:05  需要修改俩个地方,第一是系统定义的外部时钟由25000000改为8000000
 还有个是,在定义72M时,有个/5*8的运 ...
你说的这两个地方我都改了,我贴个代码吧
 //#define SYSCLK_FREQ_HSE    HSE_VALUE
 //#define SYSCLK_FREQ_24MHz  24000000
 //#define SYSCLK_FREQ_36MHz  36000000
 //#define SYSCLK_FREQ_48MHz  48000000
 //#define SYSCLK_FREQ_56MHz  56000000
 #define SYSCLK_FREQ_72MHz  72000000
 
 
 static void SetSysClockTo72(void)
 {
 __IO uint32_t StartUpCounter = 0, HSEStatus = 0;
 
 /* SYSCLK, HCLK, PCLK2 and PCLK1 configuration ---------------------------*/
 /* Enable HSE */
 RCC->CR |= ((uint32_t)RCC_CR_HSEON);
 
 /* Wait till HSE is ready and if Time out is reached exit */
 do
 {
 HSEStatus = RCC->CR & RCC_CR_HSERDY;
 StartUpCounter++;
 } while((HSEStatus == 0) && (StartUpCounter != HSE_STARTUP_TIMEOUT));
 
 if ((RCC->CR & RCC_CR_HSERDY) != RESET)
 {
 HSEStatus = (uint32_t)0x01;
 }
 else
 {
 HSEStatus = (uint32_t)0x00;
 }
 
 if (HSEStatus == (uint32_t)0x01)
 {
 /* Enable Prefetch Buffer */
 FLASH->ACR |= FLASH_ACR_PRFTBE;
 
 /* Flash 2 wait state */
 FLASH->ACR &= (uint32_t)((uint32_t)~FLASH_ACR_LATENCY);
 FLASH->ACR |= (uint32_t)FLASH_ACR_LATENCY_2;
 
 
 /* HCLK = SYSCLK */
 RCC->CFGR |= (uint32_t)RCC_CFGR_HPRE_DIV1;
 
 /* PCLK2 = HCLK */
 RCC->CFGR |= (uint32_t)RCC_CFGR_PPRE2_DIV1;
 
 /* PCLK1 = HCLK */
 RCC->CFGR |= (uint32_t)RCC_CFGR_PPRE1_DIV2;
 
 /* Configure PLLs ------------------------------------------------------*/
 ///* PLL2 configuration: PLL2CLK = (HSE / 5) * 8 = 40 MHz */
 /* PLL2 configuration: PLL2CLK = (HSE / 2) * 10 = 40 MHz */
 /* PREDIV1 configuration: PREDIV1CLK = PLL2 / 5 = 8 MHz */
 
 RCC->CFGR2 &= (uint32_t)~(RCC_CFGR2_PREDIV2 | RCC_CFGR2_PLL2MUL |
 RCC_CFGR2_PREDIV1 | RCC_CFGR2_PREDIV1SRC);
 RCC->CFGR2 |= (uint32_t)(RCC_CFGR2_PREDIV2_DIV2 | RCC_CFGR2_PLL2MUL10 |
 RCC_CFGR2_PREDIV1SRC_PLL2 | RCC_CFGR2_PREDIV1_DIV5);
 
 /* Enable PLL2 */
 RCC->CR |= RCC_CR_PLL2ON;
 /* Wait till PLL2 is ready */
 while((RCC->CR & RCC_CR_PLL2RDY) == 0)
 {
 }
 
 
 /* PLL configuration: PLLCLK = PREDIV1 * 9 = 72 MHz */
 RCC->CFGR &= (uint32_t)~(RCC_CFGR_PLLXTPRE | RCC_CFGR_PLLSRC | RCC_CFGR_PLLMULL);
 RCC->CFGR |= (uint32_t)(RCC_CFGR_PLLXTPRE_PREDIV1 | RCC_CFGR_PLLSRC_PREDIV1 |
 RCC_CFGR_PLLMULL9);
 /* Enable PLL */
 RCC->CR |= RCC_CR_PLLON;
 
 /* Wait till PLL is ready */
 while((RCC->CR & RCC_CR_PLLRDY) == 0)
 {
 }
 
 /* Select PLL as system clock source */
 RCC->CFGR &= (uint32_t)((uint32_t)~(RCC_CFGR_SW));
 RCC->CFGR |= (uint32_t)RCC_CFGR_SW_PLL;
 
 /* Wait till PLL is used as system clock source */
 while ((RCC->CFGR & (uint32_t)RCC_CFGR_SWS) != (uint32_t)0x08)
 {
 }
 }
 else
 { /* If HSE fails to start-up, the application will have wrong clock
 configuration. User can add here some code to deal with this error */
 }
 }
 #endif
 那个外部时钟我也改了
 #if !defined  HSE_VALUE
 // #ifdef STM32F10X_CL
 //#define HSE_VALUE    ((uint32_t)25000000) /*!< Value of the External oscillator in Hz */
 //#else
 #define HSE_VALUE    ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
 // #endif /* STM32F10X_CL */
 #endif /* HSE_VALUE */
 |