内部的HSI时钟

2019-07-20 14:32发布

                /*        Enables the Internal High Speed oscillator (HSI).*/
                RCC_HSICmd(ENABLE);
@brief  Enables or disables the Internal High Speed oscillator (HSI).
void RCC_HSICmd(FunctionalState NewState)
{
  /* Check the parameters */
  assert_param(IS_FUNCTIONAL_STATE(NewState));

  *(__IO uint32_t *) CR_HSION_BB = (uint32_t)NewState;
}
                /* Enable HSI */
                RCC->CR |= ((uint32_t)RCC_CR_HSION);
这两种有什么不同吗?

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。