stm32f2xx La configuración de HSI no funciona correctamente

1

Estoy usando las siguientes configuraciones (en la función SystemInit ) para configurar una MCU STM32F215RG para que funcione a la velocidad máxima (120MHZ) con soporte USB:

    RCC_DeInit();
    RCC_HSICmd(ENABLE);
    while(RCC_GetFlagStatus(RCC_FLAG_HSIRDY) == RESET);

    /* Flash 3 wait state, prefetch buffer and cache ON */
    FLASH_SetLatency(FLASH_Latency_3);
    FLASH_PrefetchBufferCmd(ENABLE);
    FLASH_InstructionCacheCmd(ENABLE);
    FLASH_DataCacheCmd(ENABLE);

    /* HCLK = SYSCLK */
    RCC_HCLKConfig(RCC_SYSCLK_Div1);
    /* PCLK2 = HCLK/2 */
    RCC_PCLK2Config(RCC_HCLK_Div2);
    /* PCLK1 = HCLK/4 */
    RCC_PCLK1Config(RCC_HCLK_Div4);
    /* Configure the main PLL clock to 120 MHz */
    RCC_PLLConfig(RCC_PLLSource_HSI, PLL_M, PLL_N, PLL_P, PLL_Q);
    /* Enable the main PLL */
    RCC_PLLCmd(ENABLE);
    /* Wait till the main PLL is ready */
    while(RCC_GetFlagStatus(RCC_FLAG_PLLRDY) == RESET);

    /* Select the main PLL as system clock source */
    RCC_SYSCLKConfig(RCC_SYSCLKSource_PLLCLK);

    /* Wait till the main PLL is used as system clock source */
    while (RCC_GetFlagStatus(RCC_FLAG_PLLRDY) == RESET);

& Aquí están los parámetros de configuración de PLL:

#define PLL_M      16
#define PLL_N      240

#define PLL_P      2
#define PLL_Q      5

Pero parece que hay un problema con HSI porque MCU NO comienza a funcionar después de reiniciar.
Pero cuando lo configuro para usar HSE (con 8MHZ crystal, PLL_M=8 ), la MCU funciona como se espera.
¿Hay algún error en mi configuración?

    
pregunta Ehsan Khodarahmi

0 respuestas

Lea otras preguntas en las etiquetas