Skip to content

Commit 9a837b8

Browse files
committed
QSPIFormat: add more feedback about full erase
1 parent 376aabf commit 9a837b8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

libraries/STM32H747_System/examples/QSPIFormat/QSPIFormat.ino

+3
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,11 @@ void setup() {
7979
}
8080

8181
Serial.println("Do you want to perform a full erase of the QSPI flash before proceeding? Y/[n]");
82+
Serial.println("Note: Full flash erase can take up to one minute.");
8283
if (true == waitResponse()) {
84+
Serial.println("Full erase started, please wait...");
8385
root->erase(0x0, root->size());
86+
Serial.println("Full erase completed.");
8487
} else {
8588
// Erase only the first sector containing the MBR
8689
root->erase(0x0, root->get_erase_size());

0 commit comments

Comments
 (0)