2019-07-20 23:35发布
xkwy 发表于 2016-3-5 20:06 不知道你是什么意思,只要代码前包含了头文件: [mw_shl_code=c,true]#include "stm32f4xx.h" ...
最多设置5个标签!
[mw_shl_code=c,true]#include "stm32f4xx.h" // Device header[/mw_shl_code]
输入SCB->,就会自动列出寄存器成员的
SCB是Cortex-M4的内核私有外设,在STM32的参考手册是找不到的;
它的详细介绍在Cortex™-M4 Devices Generic User Guide.pdf里:
你要的配置代码:
[mw_shl_code=c,true]SCB->SCR |= SCB_SCR_SLEEPDEEP_Msk;[/mw_shl_code]
(SCB_SCR_SLEEPDEEP_Msk这个标准掩码是位于core_m4.h)
好的,我看看。谢谢。
一周热门 更多>