Skip to content
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.

Commit

Permalink
Merge pull request #32 from esp-rs/accept-capital-hex
Browse files Browse the repository at this point in the history
Accept capital letters in possible function hex values
  • Loading branch information
kelnos authored Jan 3, 2022
2 parents 2422c27 + 754369c commit 143cbe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion espmonitor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const UNFINISHED_LINE_TIMEOUT: Duration = Duration::from_secs(5);
lazy_static! {
static ref LINE_SEP_RE: Regex = Regex::new("\r?\n")
.expect("Failed to parse line separator regex");
static ref FUNC_ADDR_RE: Regex = Regex::new(r"0x4[0-9a-f]{7}")
static ref FUNC_ADDR_RE: Regex = Regex::new(r"0x4[0-9a-fA-F]{7}")
.expect("Failed to parse program address regex");
}

Expand Down

0 comments on commit 143cbe9

Please sign in to comment.