Fix incorrect kick logic

This commit is contained in:
embeddedt 2025-06-05 22:07:09 -04:00
parent 7688fc2b16
commit 213e0ceb9a
No known key found for this signature in database
GPG Key ID: A69433EC199B5613

View File

@ -43,7 +43,7 @@ public class DFUBlaster {
}
public static void kick() {
NEXT_WAKE_TIME.getAndAdd(DELAY_TIME);
NEXT_WAKE_TIME.set(System.nanoTime() + DELAY_TIME);
}
static class CleanerThread extends Thread {