You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: espflash/src/connection/reset.rs
+33-12Lines changed: 33 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
//! This entire module is copied from `esptool.py` (https://github.com/espressif/esptool/blob/a8586d02b1305ebc687d31783437a7f4d4dbb70f/esptool/reset.py)
1
+
//! Most of this module is copied from `esptool.py` (https://github.com/espressif/esptool/blob/a8586d02b1305ebc687d31783437a7f4d4dbb70f/esptool/reset.py)
2
2
3
3
#[cfg(unix)]
4
4
use std::{io, os::fd::AsRawFd};
@@ -198,22 +198,43 @@ impl ResetStrategy for UsbJtagSerialReset {
198
198
}
199
199
}
200
200
201
-
/// Reset sequence for hard resetting the chip.
202
-
///
203
-
/// Can be used to reset out of the bootloader or to restart a running app.
0 commit comments