-
Notifications
You must be signed in to change notification settings - Fork 147
Update download mode detection #685
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Previously, this failed to detect download mode during this regex match in the following message.
```
ESP-ROM:esp32s3-20210327
Build:Mar 27 2021
rst:0x1 (POWERON),boot:0x0 (DOWNLOAD(USB/UART0))
waiting for download
```
`.*` only matches on any character EXCEPT line breaks, where as [\s\S]` will match on anything.
SergioGasquez
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your contribution! Although its only one line, it probably deserves a changelog entry. Mind adding it?
Co-authored-by: Sergio Gasquez Arcos <[email protected]>
|
What is going on with CI? It was passing before, I just updated the Changelog. Sorry about that 😅 |
I think it wasn't passing before, |
|
ci is green! |
SergioGasquez
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for fixing it!
Previously, this failed to detect download mode during this regex match in the following message.
.*only matches on any character EXCEPT line breaks, where as[\s\S]will match on anything.