From c0702458681b9db80e9b5744183068525ced35b1 Mon Sep 17 00:00:00 2001 From: pennam Date: Mon, 1 Dec 2025 17:25:16 +0100 Subject: [PATCH] QSPIFormat: fix information about Arduino PLC IDE filesystem --- libraries/STM32H747_System/examples/QSPIFormat/QSPIFormat.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/STM32H747_System/examples/QSPIFormat/QSPIFormat.ino b/libraries/STM32H747_System/examples/QSPIFormat/QSPIFormat.ino index 6216766b7..bf253bf9e 100644 --- a/libraries/STM32H747_System/examples/QSPIFormat/QSPIFormat.ino +++ b/libraries/STM32H747_System/examples/QSPIFormat/QSPIFormat.ino @@ -138,7 +138,7 @@ void setup() { Serial.println("\nDo you want to use LittleFS to format user data partition? Y/[n]"); Serial.println("If No, FatFS will be used to format user partition."); - Serial.println("Note: LittleFS is not supported by the OPTA PLC runtime."); + Serial.println("Note: Arduino PLC IDE is using LittleFS to store runtime data on this partition."); if (true == waitResponse()) { Serial.println("Formatting user partition with LittleFS."); user_data_fs = new mbed::LittleFileSystem("user");