From ff3f9e2e1bb54ea0136d74629c6d26408c08f428 Mon Sep 17 00:00:00 2001 From: claudiol Date: Wed, 11 May 2016 13:30:32 -0400 Subject: [PATCH] Set default timeout to 2 minutes --- firmware/hal_battery.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/hal_battery.c b/firmware/hal_battery.c index fec4f71..124c082 100644 --- a/firmware/hal_battery.c +++ b/firmware/hal_battery.c @@ -122,7 +122,7 @@ void busy_handler() void halInitBusyHandler() { cpu_setspeed(6000000); - halFlags=SET_AUTOOFFTIME(1); + halFlags=SET_AUTOOFFTIME(3); // DEFAULT TO 2 MINUTES halBusyEvent=tmr_eventcreate(&busy_handler,500,0); }