Skip to content

Commit b331f75

Browse files
authored
Esp32ExceptionDecoder: support uppercase hex addresses in backtrace (platformio#582)
1 parent ab75429 commit b331f75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

monitor/filter_exception_decoder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Esp32ExceptionDecoder(DeviceMonitorFilter):
3232
def __call__(self):
3333
self.buffer = ""
3434
self.backtrace_re = re.compile(
35-
r"^Backtrace: ?((0x[0-9a-f]+:0x[0-9a-f]+ ?)+)\s*"
35+
r"^Backtrace: ?((0x[0-9a-fA-F]+:0x[0-9a-fA-F]+ ?)+)\s*"
3636
)
3737

3838
self.firmware_path = None

0 commit comments

Comments
 (0)