canboot_main: Change double reset time from 2 seconds to 500ms

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor 2022-05-04 22:34:42 -04:00 committed by Eric Callahan
parent 66c9853929
commit a84b354cee

View File

@ -245,7 +245,7 @@ check_double_reset(void)
// set request signature and delay for two seconds. This enters the bootloader if
// the reset button is double clicked
set_bootup_code(REQUEST_SIG);
udelay(2000000);
udelay(500000);
set_bootup_code(0);
// No reset, read the key back out to clear it
}