From 8e79915474bb96a1e59eee5279634d78ad2a3a0e Mon Sep 17 00:00:00 2001 From: Jimmy Hon Date: Mon, 22 Sep 2025 02:42:19 +0000 Subject: [PATCH] Add wait between invocations to cause board lockup --- TFLite_detection_image.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/TFLite_detection_image.py b/TFLite_detection_image.py index a096081e..e8163db6 100644 --- a/TFLite_detection_image.py +++ b/TFLite_detection_image.py @@ -177,6 +177,8 @@ start_time = time.time() for i in range(0, num_iterations): interpreter.invoke() + # Cause board lockup + time.sleep(0.200) stop_time = time.time() #print("&&&&&&&&&&& Finished inference")