1、充电时不再叠待机绿灯;意外复位不再跳过 3s 开机按键判定

2、电机停转去掉反接刹车改自由滑行,避免电流冲击触发 LVD 复位;
3、关机直接 power_set_soft_poweroff,跳过耳机 SDK 优雅关机流程,按键关机从十几秒压到瞬间掉电
This commit is contained in:
2026-08-25 20:05:59 +08:00
parent 5e5f921a3a
commit 93c1943992
8 changed files with 72 additions and 67 deletions
+2 -1
View File
@@ -193,7 +193,8 @@ void app_led_run(uint16_t dt, uint8_t app_power)
led_clear_function_events();
} else {
#if BOARD_LED_STANDBY_ON
if ((charge_led != 2) && !pairing && !green_busy()) {
/* 正在充电(红)或已充满(绿)时都不叠加待机绿,只有完全没接电才显示待机 */
if ((charge_led == 0) && !pairing && !green_busy()) {
LED_EventAdd(LED_EVENT_STANDBY);
} else {
LED_EventDelete(LED_EVENT_STANDBY);