关于STM32F072启动的问题,MCU不能工作

2019-07-21 00:16发布

[mw_shl_code=c,true]static void SetSysClock(void)
{
  __IO uint32_t StartUpCounter = 0, HSEStatus = 0;
  
  /* SYSCLK, HCLK, PCLK configuration ----------------------------------------*/
  /* Enable HSE */   
//RCC->CR |= ((uint32_t)RCC_CR_HSEON);
         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 and set Flash Latency */
    FLASH->ACR = FLASH_ACR_PRFTBE | FLASH_ACR_LATENCY;

    /* HCLK = SYSCLK */
    RCC->CFGR |= (uint32_t)RCC_CFGR_HPRE_DIV1;
      
    /* PCLK = HCLK */
    RCC->CFGR |= (uint32_t)RCC_CFGR_PPRE_DIV1;

    /* PLL configuration = HSI * 6 = 48 MHz */
    RCC->CFGR &= (uint32_t)((uint32_t)~(RCC_CFGR_PLLSRC | RCC_CFGR_PLLXTPRE | RCC_CFGR_PLLMULL));
    RCC->CFGR |= (uint32_t)(RCC_CFGR_PLLSRC_PREDIV1 | RCC_CFGR_PLLXTPRE_PREDIV1 | RCC_CFGR_PLLMULL6);
            
    /* 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)RCC_CFGR_SWS_PLL)
    {
    }
  }
  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 */
  }  
}[/mw_shl_code]由于所用的DEMO版需要,我把第7行改为第8行 ,程序一直在第10行到第14行的地方循环执行,MCU无法正常工作,请问各位问题出在哪?


友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
6条回答
qq4056
1楼-- · 2019-07-21 04:06
Electronic
2楼-- · 2019-07-21 08:39
 精彩回答 2  元偷偷看……
qq4056
3楼-- · 2019-07-21 11:57
 精彩回答 2  元偷偷看……
aozima
4楼-- · 2019-07-21 14:41
用CUBE,配好时钟树的,然后可以生成代码的吧
Electronic
5楼-- · 2019-07-21 15:15
qq4056 发表于 2019-6-6 21:42
对对,我想用HSI,但是不知道为什么一直死循环,多指教

1、屏蔽do{}while;
2、复制if (HSEStatus == (uint32_t)0x01)里的代码到到底下的else,然后修改PLL时钟源为HSI的2分频
3、修改PLL倍频为12
qq4056
6楼-- · 2019-07-21 16:24
aozima 发表于 2019-6-7 07:36
用CUBE,配好时钟树的,然后可以生成代码的吧

CUBE不知道怎么使用,现在都还在用库

一周热门 更多>