Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified firmware/firmware.bin
Binary file not shown.
4 changes: 2 additions & 2 deletions firmware/src/glitch.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down