We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9f1b32 commit 70aa369Copy full SHA for 70aa369
libraries/STM32H747_System/examples/QSPIFormat/QSPIFormat.ino
@@ -12,7 +12,8 @@ using namespace mbed;
12
BlockDevice* root = BlockDevice::get_default_instance();
13
MBRBlockDevice wifi_data(root, 1);
14
MBRBlockDevice ota_data(root, 2);
15
-MBRBlockDevice user_data(root, 3);
+MBRBlockDevice kvstore_data(root, 3);
16
+MBRBlockDevice user_data(root, 4);
17
FATFileSystem wifi_data_fs("wlan");
18
FATFileSystem ota_data_fs("fs");
19
FileSystem * user_data_fs;
0 commit comments