Esp32ExceptionDecoder: fix compatibility with ESP-IDF 4.0 (#304)

* It adds |<-CORRUPTED at the end of the backtrace
This commit is contained in:
Vojtěch Boček
2020-03-21 11:09:59 +01:00
committed by GitHub
parent f923797a30
commit d5d759eacb
+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-f]+:0x[0-9a-f]+ ?)+)\s*"
)
self.firmware_path = None