From 421012870e34f65bbf9c34321df5d27063207c03 Mon Sep 17 00:00:00 2001 From: YunHorn Technology Date: Thu, 4 Jul 2024 13:04:01 +0800 Subject: [PATCH] ---- no GPIO_DeInit in EnterStopMode --- Core/Src/stm32_lpm_if.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Core/Src/stm32_lpm_if.c b/Core/Src/stm32_lpm_if.c index e706c20..f39fb24 100644 --- a/Core/Src/stm32_lpm_if.c +++ b/Core/Src/stm32_lpm_if.c @@ -108,9 +108,9 @@ void PWR_EnterStopMode(void) /* USER CODE BEGIN EnterStopMode_1 */ HAL_UART_DeInit(&huart2); vcom_DeInit(); - HAL_GPIO_DeInit(GPIOA,GPIO_PIN_All); - HAL_GPIO_DeInit(GPIOB,GPIO_PIN_All); - HAL_GPIO_DeInit(GPIOC,GPIO_PIN_All); + //HAL_GPIO_DeInit(GPIOA,GPIO_PIN_All); + //HAL_GPIO_DeInit(GPIOB,GPIO_PIN_All); + //HAL_GPIO_DeInit(GPIOC,GPIO_PIN_All); //HAL_GPIO_WritePin(GPIOA, GPIO_PIN_All, GPIO_PIN_RESET); //HAL_GPIO_WritePin(GPIOB, GPIO_PIN_All, GPIO_PIN_RESET); //HAL_GPIO_WritePin(GPIOC, GPIO_PIN_All, GPIO_PIN_RESET);