完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
条件:
STM32L151C8T6 全部端口悬空 电源电压 2.8V 供电 使用内部时钟64k //单片机 STM32L151C8T6 //keil4 //运行时的 电流是 140uA //stop模式的 电流是 20uA //编译不通过 查询 固件库 int main() { Delay_ms(1000); HSI_init();//设置系统时钟 MSI clock is around 65.536 KHz clock_out();//使用 PA8口 输出系统时钟 Delay_ms(10);//时钟输出一会 gpio_lowpower_fun();//22uA PWR_EnterSTOPMode(PWR_Regulator_ON,PWR_STOPEntry_WFE);//进入stop模式 while(1) { } } void Delay_ms(uint16_t time_ms) { uint16_t i,j; i = time_ms; while(i!=0) { for( j=0;j《8000;j++ ) {} i--; } } void HSI_init(void)//MSI clock is around 65.536 KHz { RCC_DeInit(); RCC_MSIRangeConfig(RCC_MSIRange_0); while(RCC_GetFlagStatus(RCC_FLAG_HSERDY)!=RESET) {} } void clock_out(void)//使用PA8输出 系统时钟 便于观察系统时钟 { GPIO_InitTypeDef GPIO_InitStructure; GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_40MHz; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF; GPIO_Init(GPIOA, &GPIO_InitStructure); RCC_MCOConfig(RCC_MCOSource_SYSCLK,RCC_MCODiv_1); } void gpio_lowpower_fun(void) { GPIO_InitTypeDef GPIO_InitStructure; RCC_AHBPeriphResetCmd(RCC_AHBPeriph_GPIOA, DISABLE); RCC_AHBPeriphResetCmd(RCC_AHBPeriph_GPIOB, DISABLE); RCC_AHBPeriphResetCmd(RCC_AHBPeriph_GPIOC, DISABLE); GPIO_InitStructure.GPIO_Pin = GPIO_Pin_All; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_400KHz; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AN; GPIO_InitStructure.GPIO_OType = GPIO_OType_OD; GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_DOWN; GPIO_Init(GPIOA, &GPIO_InitStructure); GPIO_Init(GPIOB, &GPIO_InitStructure); GPIO_Init(GPIOC, &GPIO_InitStructure); } |
|
|
|
只有小组成员才能发言,加入小组>>
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-22 16:20 , Processed in 0.600851 second(s), Total 76, Slave 60 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号