We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4e06e4 commit 93608faCopy full SHA for 93608fa
libraries/STM32H747_System/examples/QSPIFormat/QSPIFormat.ino
@@ -74,11 +74,13 @@ void setup() {
74
int err = wifi_data_fs.reformat(&wifi_data);
75
if (err) {
76
Serial.println("Error formatting WiFi partition");
77
+ return;
78
}
79
80
err = ota_data_fs.reformat(&ota_data);
81
82
Serial.println("Error formatting OTA partition");
83
84
85
86
if(!default_scheme) {
@@ -96,6 +98,7 @@ void setup() {
96
98
err = user_data_fs->reformat(&user_data);
97
99
100
Serial.println("Error formatting user partition");
101
102
103
104
Serial.println("\nQSPI Flash formatted!");
0 commit comments