Merge remote-tracking branch 'ofw/dev' into mntm-dev --nobuild

This commit is contained in:
Willy-JL
2025-03-26 11:28:08 +00:00
26 changed files with 344 additions and 126 deletions
+1 -3
View File
@@ -37,15 +37,13 @@ class Main(App):
self.logger.info(f"Attempting to find flipper with {retry_count} attempts.")
for i in range(retry_count):
time.sleep(1)
self.logger.info(f"Attempt to find flipper #{i}.")
if port := resolve_port(self.logger, self.args.port):
self.logger.info(f"Found flipper at {port}")
time.sleep(1)
break
time.sleep(1)
if not port:
self.logger.info(f"Failed to find flipper {port}")
return None