各位高手,请教个问题,我想在STM8L151主电掉电的情况下使起进入Active-halt模式(只启用RTC)使用电池供电,主电恢复后由上电复位电路复位进入正常工作 下面是部分程序,因第一次用该芯片,不知道怎么进入Active-halt模式,下面是部分程序,实测电流超过3mA,请高手们帮我看看那里出问题了 void power_init(void)//电源管理 { PWR_DeInit(); PWR_PVDLevelConfig(PWR_PVDLevel_3V05);//阀值电压3.05 PWR_PVDCmd(ENABLE); PWR_FastWakeUpCmd(ENABLE); PWR_PVDITConfig(ENABLE); } void lowpower_config(void) { GPIO_DeInit(GPIOA); GPIO_DeInit(GPIOB); GPIO_DeInit(GPIOC); GPIO_DeInit(GPIOD); GPIO_DeInit(GPIOE); GPIO_DeInit(GPIOF); ADC_DeInit(ADC1); TIM2_DeInit(); TIM1_DeInit(); USART_DeInit(USART1); CLK_PeripheralClockConfig(CLK_Peripheral_ADC1, DISABLE); CLK_PeripheralClockConfig(CLK_Peripheral_DMA1, DISABLE); GPIO_Init(GPIOA, GPIO_Pin_4, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOA, GPIO_Pin_5, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOA, GPIO_Pin_6, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOD, GPIO_Pin_1, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOD, GPIO_Pin_2, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOD, GPIO_Pin_3, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOB, GPIO_Pin_0, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOB, GPIO_Pin_1, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOB, GPIO_Pin_7, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOF, GPIO_Pin_0, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOB, GPIO_Pin_2, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOB, GPIO_Pin_3, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOB, GPIO_Pin_4, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOB, GPIO_Pin_5, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOE, GPIO_Pin_6, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOC, GPIO_Pin_1, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOC, GPIO_Pin_0, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOD, GPIO_Pin_7, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOB, GPIO_Pin_5, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOB, GPIO_Pin_7, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOD,GPIO_Pin_5,GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOD,GPIO_Pin_4,GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOB,GPIO_Pin_6,GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOA,GPIO_Pin_7,GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOE,GPIO_Pin_0,GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOE,GPIO_Pin_1,GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOE,GPIO_Pin_2,GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOE,GPIO_Pin_3,GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOE,GPIO_Pin_4,GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOE,GPIO_Pin_5,GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOD,GPIO_Pin_0,GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOD,GPIO_Pin_6,GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOE,GPIO_Pin_7,GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOC, GPIO_Pin_2, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOC, GPIO_Pin_3, GPIO_Mode_In_PU_No_IT); GPIO_Init(GPIOC, GPIO_Pin_4, GPIO_Mode_In_PU_No_IT); CLK_PeripheralClockConfig(CLK_Peripheral_USART1, DISABLE); CLK_PeripheralClockConfig(CLK_Peripheral_TIM2, DISABLE); CLK_PeripheralClockConfig(CLK_Peripheral_TIM1, DISABLE); PWR_UltraLowPowerCmd(ENABLE); CLK_SYSCLKDivConfig(CLK_SYSCLKDiv_1); CLK_SYSCLKSourceConfig(CLK_SYSCLKSource_LSE); CLK_SYSCLKSourceSwitchCmd(ENABLE); while (CLK_GetSYSCLKSource() != CLK_SYSCLKSource_LSE){}; CLK_HSEConfig(CLK_HSE_OFF); CLK_HaltConfig(CLK_Halt_FastWakeup,ENABLE);//快速唤醒 halt(); } INTERRUPT_HANDLER(EXTIE_F_PVD_IRQHandler, 5) { lowpower_config(); PWR_PVDITConfig(DISABLE); } } |
STMS005K6T6 如何采集内部参考电压。
stm8s003 adc中断和通道切换的问题
adc施密特触发器stm8
stm8l051f3 TSSOP20 封装,待机模式下,2天后,电流突然增加到140UA
STM8S用STVP烧录怎么加密?
如何使用ST官网例程_LIN总线通讯_STM8AF
STM8 LIN
IAR代码编辑太费劲了,想问一下有没有好的方法,试了VScode但是头文件老是报错,调了很久也没调好,想换个方法了。
想问一下各位大佬,IAR下载调试代码时出现 warning: is an illegal data sample expression IAR是什么意思啊?
STM8S标准库TIM1编码器功能不计数,请大师帮我看看
临时写的,主要目的是试下低功耗的电流变化,为了方便调试,搞了这么多!结果貌似之前的片子有问题,一直没法调出来低功耗,换了块好像是行了,只是还没时间具体试