How get lowest sleep current in STM32F30.
Hi All,
I am using STM32F301k8 for my remote project. I am using HSI clock source, I am enable one i/o interrupt and using UART1. for sleep i am using STOP mode by following functions.
HAL_UART_DeInit(&huart1);
__HAL_RCC_USART1_CLK_DISABLE();
HAL_SuspendTick();
__HAL_RCC_PWR_CLK_ENABLE();
HAL_PWR_EnterSTOPMode(PWR_LOWPOWERREGULATOR_ON, PWR_STOPENTRY_WFI);
by using above function i am getting sllep current is 300 micro amps.
i trying to get 10 micro amps.
Note :
In remote total 15 switches are there each switch contains one terminal pull down with 3.3M ohms resistor and connected with controller I/O and other terminal pull up with 4.7K ohms.
Thanks i advance.
