We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 376aabf commit 9a837b8Copy full SHA for 9a837b8
libraries/STM32H747_System/examples/QSPIFormat/QSPIFormat.ino
@@ -79,8 +79,11 @@ void setup() {
79
}
80
81
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.");
83
if (true == waitResponse()) {
84
+ Serial.println("Full erase started, please wait...");
85
root->erase(0x0, root->size());
86
+ Serial.println("Full erase completed.");
87
} else {
88
// Erase only the first sector containing the MBR
89
root->erase(0x0, root->get_erase_size());
0 commit comments