From 4ddfe05a5965200ea5c418c52376b42e99e575c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=82=E3=81=8F?= Date: Fri, 16 Jun 2023 15:48:57 +0900 Subject: [PATCH] Debug: sync apps on attach, makes it possible to debug already started app that has crashed (#2778) --- scripts/debug/flipperapps.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/debug/flipperapps.py b/scripts/debug/flipperapps.py index 608c30412..6dba89a56 100644 --- a/scripts/debug/flipperapps.py +++ b/scripts/debug/flipperapps.py @@ -188,6 +188,7 @@ class FlipperAppStateHelper: ) self.app_type_ptr = gdb.lookup_type("FlipperApplication").pointer() self.app_list_entry_type = gdb.lookup_type("struct FlipperApplicationList_s") + self._sync_apps() def handle_stop(self, event) -> None: self._sync_apps()