From a05818aae3cb367c89cf0ae318f28869686c4af6 Mon Sep 17 00:00:00 2001 From: Mena Date: Sun, 9 Oct 2022 16:16:19 -0400 Subject: [PATCH] timeout update for toshiba emmc. Already forced by bitstream by authors --- firmware/src/glitch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/src/glitch.c b/firmware/src/glitch.c index a1b1f7e..7768382 100644 --- a/firmware/src/glitch.c +++ b/firmware/src/glitch.c @@ -172,7 +172,7 @@ enum STATUSCODE glitch_reuse_offsets(logger *lgr, session_info_t *session_info, glitch_cfg.offset = cfg.timings[i].offset; glitch_cfg.width = cfg.timings[i].width; glitch_cfg.subcycle_delay = 0; - glitch_cfg.timeout = 50; + glitch_cfg.timeout = 100; // Allow each config to be rejected by the heuristic 3x before moving on const unsigned int retries_per_config = 3; @@ -234,7 +234,7 @@ enum STATUSCODE glitch_search_new_offset(logger *lgr, session_info_t *session_in glitch_cfg_t glitch_cfg; glitch_cfg.width = START_GLITCH_WIDTH; glitch_cfg.subcycle_delay = 0; - glitch_cfg.timeout = 50; + glitch_cfg.timeout = 100; bool fatal_abort = false; bool reflash = false;