[main] Update sleep times

This commit is contained in:
2024-03-05 22:32:33 +05:30
parent ff25f1aba3
commit 2d6557e770

View File

@@ -119,7 +119,7 @@ fn do_device_loop(mut timer: TimerManager, frame_buffer: Arc<Mutex<Box<[bool; 20
}
device.cycle().expect("Failed to execute");
// Put a bit of delay to slow down execution
thread::sleep(Duration::from_nanos(500))
thread::sleep(Duration::from_millis(2))
}
}