Skip to content

Commit 23a137f

Browse files
authored
Update ADDR_PATTERN regex for address matching fix espressif/arduino-esp32#11932 (#321)
1 parent 98f8ba5 commit 23a137f

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
@@ -31,7 +31,7 @@
3131
class Esp32ExceptionDecoder(DeviceMonitorFilterBase):
3232
NAME = "esp32_exception_decoder"
3333

34-
ADDR_PATTERN = re.compile(r"((?:0x[0-9a-fA-F]{8}[: ]?)+)")
34+
ADDR_PATTERN = re.compile(r"((?:0x[0-9a-fA-F]{8}:0x[0-9a-fA-F]{8}(?: |$))+)")
3535
ADDR_SPLIT = re.compile(r"[ :]")
3636
PREFIX_RE = re.compile(r"^ *")
3737

0 commit comments

Comments
 (0)