From 049c4f630b539c9d036b5a253f6e09c4d6556f43 Mon Sep 17 00:00:00 2001 From: Maxwell Beck Date: Sat, 28 Dec 2024 19:34:56 -0600 Subject: [PATCH] Allow some CPU timing slop Still not sure why this is needed now. --- src/pico1541.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pico1541.c b/src/pico1541.c index 266bfd7..3489fee 100644 --- a/src/pico1541.c +++ b/src/pico1541.c @@ -187,7 +187,7 @@ int main() { ts = time_us_32(); uint16_t osc2 = 0xffff; while (!cpu.jammed) { - if (ts < time_us_32()) { + if (ts + 100 < time_us_32()) { break; } -- 2.47.2