Esp32ExceptionDecoder: support uppercase hex addresses in backtrace (#582)

This commit is contained in:
Vojtěch Boček
2021-07-09 14:30:24 +02:00
committed by GitHub
parent ab75429d75
commit b331f75383
+1 -1
View File
@@ -32,7 +32,7 @@ class Esp32ExceptionDecoder(DeviceMonitorFilter):
def __call__(self):
self.buffer = ""
self.backtrace_re = re.compile(
r"^Backtrace: ?((0x[0-9a-f]+:0x[0-9a-f]+ ?)+)\s*"
r"^Backtrace: ?((0x[0-9a-fA-F]+:0x[0-9a-fA-F]+ ?)+)\s*"
)
self.firmware_path = None