Skip to content

Remove Internal Flash storage method #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 0 additions & 49 deletions examples/OTA_Internal_Flash/OTA_Internal_Flash.ino

This file was deleted.

3 changes: 0 additions & 3 deletions keywords.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
Arduino_Portenta_OTA KEYWORD1
Arduino_Portenta_OTA_SD KEYWORD1
Arduino_Portenta_OTA_QSPI KEYWORD1
Arduino_Portenta_OTA_InternalFlash KEYWORD1
Error KEYWORD1

#######################################
Expand All @@ -27,8 +26,6 @@ decompress KEYWORD2
# Constants (LITERAL1)
#######################################

INTERNAL_FLASH_FATFS LITERAL1
INTERNAL_FLASH_LITTLEFS LITERAL1
QSPI_FLASH_FATFS LITERAL1
QSPI_FLASH_FATFS_MBR LITERAL1
SD_FATFS LITERAL1
Expand Down
4 changes: 0 additions & 4 deletions src/Arduino_Portenta_OTA.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
* DEFINE
******************************************************************************/

#define APOTA_INTERNAL_FLASH_FLAG (1 << 1)
#define APOTA_QSPI_FLASH_FLAG (1 << 2)
#define APOTA_SDCARD_FLAG (1 << 3)
#define APOTA_RAW_FLAG (1 << 4)
Expand All @@ -48,8 +47,6 @@
******************************************************************************/

enum StorageTypePortenta {
INTERNAL_FLASH_FATFS = APOTA_INTERNAL_FLASH_FLAG | APOTA_FATFS_FLAG,
INTERNAL_FLASH_LITTLEFS = APOTA_INTERNAL_FLASH_FLAG | APOTA_LITTLEFS_FLAG,
QSPI_FLASH_FATFS = APOTA_QSPI_FLASH_FLAG | APOTA_FATFS_FLAG,
QSPI_FLASH_FATFS_MBR = APOTA_QSPI_FLASH_FLAG | APOTA_FATFS_FLAG | APOTA_MBR_FLAG,
SD_FATFS = APOTA_SDCARD_FLAG | APOTA_FATFS_FLAG,
Expand Down Expand Up @@ -115,6 +112,5 @@ class Arduino_Portenta_OTA

#include "Arduino_Portenta_OTA_SD.h"
#include "Arduino_Portenta_OTA_QSPI.h"
#include "Arduino_Portenta_OTA_InternalFlash.h"

#endif /* ARDUINO_PORTENTA_OTA_H_ */
109 changes: 0 additions & 109 deletions src/Arduino_Portenta_OTA_InternalFlash.cpp

This file was deleted.

55 changes: 0 additions & 55 deletions src/Arduino_Portenta_OTA_InternalFlash.h

This file was deleted.