Skip to content

Commit f1ad1a4

Browse files
committed
Remove Internal Flash storage method
1 parent 5c13c40 commit f1ad1a4

File tree

5 files changed

+0
-220
lines changed

5 files changed

+0
-220
lines changed

examples/OTA_Internal_Flash/OTA_Internal_Flash.ino

-49
This file was deleted.

keywords.txt

-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
Arduino_Portenta_OTA KEYWORD1
1010
Arduino_Portenta_OTA_SD KEYWORD1
1111
Arduino_Portenta_OTA_QSPI KEYWORD1
12-
Arduino_Portenta_OTA_InternalFlash KEYWORD1
1312
Error KEYWORD1
1413

1514
#######################################
@@ -27,8 +26,6 @@ decompress KEYWORD2
2726
# Constants (LITERAL1)
2827
#######################################
2928

30-
INTERNAL_FLASH_FATFS LITERAL1
31-
INTERNAL_FLASH_LITTLEFS LITERAL1
3229
QSPI_FLASH_FATFS LITERAL1
3330
QSPI_FLASH_FATFS_MBR LITERAL1
3431
SD_FATFS LITERAL1

src/Arduino_Portenta_OTA.h

-4
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
* DEFINE
3636
******************************************************************************/
3737

38-
#define APOTA_INTERNAL_FLASH_FLAG (1 << 1)
3938
#define APOTA_QSPI_FLASH_FLAG (1 << 2)
4039
#define APOTA_SDCARD_FLAG (1 << 3)
4140
#define APOTA_RAW_FLAG (1 << 4)
@@ -48,8 +47,6 @@
4847
******************************************************************************/
4948

5049
enum StorageTypePortenta {
51-
INTERNAL_FLASH_FATFS = APOTA_INTERNAL_FLASH_FLAG | APOTA_FATFS_FLAG,
52-
INTERNAL_FLASH_LITTLEFS = APOTA_INTERNAL_FLASH_FLAG | APOTA_LITTLEFS_FLAG,
5350
QSPI_FLASH_FATFS = APOTA_QSPI_FLASH_FLAG | APOTA_FATFS_FLAG,
5451
QSPI_FLASH_FATFS_MBR = APOTA_QSPI_FLASH_FLAG | APOTA_FATFS_FLAG | APOTA_MBR_FLAG,
5552
SD_FATFS = APOTA_SDCARD_FLAG | APOTA_FATFS_FLAG,
@@ -115,6 +112,5 @@ class Arduino_Portenta_OTA
115112

116113
#include "Arduino_Portenta_OTA_SD.h"
117114
#include "Arduino_Portenta_OTA_QSPI.h"
118-
#include "Arduino_Portenta_OTA_InternalFlash.h"
119115

120116
#endif /* ARDUINO_PORTENTA_OTA_H_ */

src/Arduino_Portenta_OTA_InternalFlash.cpp

-109
This file was deleted.

src/Arduino_Portenta_OTA_InternalFlash.h

-55
This file was deleted.

0 commit comments

Comments
 (0)