전원 버튼 타이머 조건 변경

This commit is contained in:
2026-04-21 16:51:54 +09:00
parent 2bff259fa3
commit e20e8f5665

View File

@@ -1633,7 +1633,7 @@ static void main_s(void * p_context)
go_device_power_off = true;
main_timer_start();
}
else if (cnt_s > 250 || (m_reset_status == 2)) /* 250 x 5ms = 1.25s + α */
else if (cnt_s >= 250 || (m_reset_status == 2)) /* 250 x 5ms = 1.25s + α */
{
DBG_PRINTF("[BTN] Boot (cnt=%d)\r\n", cnt_s);
device_reset = false;