void SystemInit (void)
{
/* Reset the RCC clock configuration to the default reset state(for debug purpose) */
/* Set HSION bit */
RCC->CR |= (uint32_t)0x00000001;
如上,CR寄存器复位值为0x000XX83。那么执行和0x0000001或运算。最低位应该是0,那应该是关闭HSI。为什么上面说的是开启?
本人小白一枚,望大神告知。。 |