stm32中的这个SCB怎么在参考手册中没有提到
时间:10-02
整理:3721RD
点击:
stm32中的scb这个东西,怎么配置,中文参考手册中没有提到啊?if (NewState != DISABLE)
{
SCB->SCR |= LowPowerMode;
}
else
{
SCB->SCR &= (uint32_t)(~(uint32_t)LowPowerMode);
}
}
{
SCB->SCR |= LowPowerMode;
}
else
{
SCB->SCR &= (uint32_t)(~(uint32_t)LowPowerMode);
}
}
关于这个寄存器的介绍可以在PM0056: STM32F10xxx/20xxx/21xxx/L1xxxx Cortex-M3 programming manual这个文档中看到
下载地址:http://www.st.com/st-web-ui/static/active/en/resource/technical/document/programming_manual/CD00228163.pdf?s_searchtype=keyword
另附一篇介绍STM32寄存器比较好的文章:
STM32文档中关于NVIC寄存器说明的位置http://www.cnblogs.com/TrueElement/archive/2012/09/12/2682371.html
谢谢!