Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update download mode detection (#685)
* Update download mode detection 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. * fix fmt * Update CHANGELOG.md * Update espflash/src/connection/mod.rs Co-authored-by: Sergio Gasquez Arcos <[email protected]> * Update mod.rs --------- Co-authored-by: Sergio Gasquez Arcos <[email protected]> Co-authored-by: Jesse Braham <[email protected]>
- Loading branch information