完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
各位好!
我用STM32L476 nucleo板运行STM32Cube_FW_L4_V1.3.0下的STM32L476RG-NucleoExamplesPWRPWR_SHUTDOWN例程。运行功能正常。按下按键能执行enter low power mode;但是,就是找不到返回shutdown模式的断点代码。 |
|
相关推荐
6个回答
|
|
睡眠了 貌似就无法仿真了 也不存在唤醒处加断点了~
|
|
|
|
谢谢!
|
|
|
|
stm32L4睡眠模式推荐用stop2模式。
|
|
|
|
void JTAG_Init(FunctionalState NewState)
{ GPIO_InitTypeDef GPIO_InitStructure; if(NewState == ENABLE) { GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF; GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_40MHz; GPIO_Init(GPIOA, &GPIO_InitStructure); GPIO_InitStructure.GPIO_Pin = GPIO_Pin_14; GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_DOWN; GPIO_Init(GPIOA, &GPIO_InitStructure); } else { GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13 | GPIO_Pin_14; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_400KHz; GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL; GPIO_Init(GPIOA, &GPIO_InitStructure); } DBGMCU_Config(DBGMCU_STOP, NewState); RCC_AHBPeriphClockLPModeCmd(RCC_AHBPeriph_GPIOA, NewState); } 加上这个试试 |
|
|
|
|
|
|
|
的确如上述几位大侠说的那样,睡眠状态处***模式用于工程节电应用了。效果还不错的!
|
|
|
|
你正在撰写答案
如果你是对答案或其他答案精选点评或询问,请使用“评论”功能。
878 浏览 0 评论
AD7686芯片不传输数据给STM32,但是手按住就会有数据。
936 浏览 2 评论
2044 浏览 0 评论
如何解决MPU-9250与STM32通讯时,出现HAL_ERROR = 0x01U
1145 浏览 1 评论
hal库中i2c卡死在HAL_I2C_Master_Transmit
1568 浏览 1 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-22 03:04 , Processed in 1.688419 second(s), Total 82, Slave 65 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号