From 1e19df7ec5492ff8d97c292bc08ee0ac6e748797 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=8D=E5=90=83=E6=B2=B9=E7=82=B8=E9=B8=A1?= <1425962791@qq.com> Date: Sat, 29 Nov 2025 10:50:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E4=BA=AE=E5=BA=A6=E9=99=90?= =?UTF-8?q?=E5=AE=9A=E8=8C=83=E5=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Power_Pico/BSP/EEPROM/BL24C02.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Power_Pico/BSP/EEPROM/BL24C02.c b/Power_Pico/BSP/EEPROM/BL24C02.c index 7ad1c60..bbb26b6 100644 --- a/Power_Pico/BSP/EEPROM/BL24C02.c +++ b/Power_Pico/BSP/EEPROM/BL24C02.c @@ -137,7 +137,7 @@ bool EEPROM_UpdateCommand_Check(void) void Sys_Set_BacklightLevel(uint8_t level) { - if(level <= 100 && level >= 10) { + if(level <= 100 && level >= 0) { sys_settings.backlight_level = level; LCD_Set_Light(level); }