From a1110530c695d2f6bbcd8789debcb409130e8801 Mon Sep 17 00:00:00 2001 From: hathach Date: Tue, 25 Oct 2022 15:18:53 +0700 Subject: [PATCH] rename FatFileSystem -> FatVolume for examples --- examples/BreakoutSSD1331/BreakoutSSD1331.ino | 4 ++-- examples/BreakoutSSD1351/BreakoutSSD1351.ino | 4 ++-- examples/BreakoutST7735-128x128/BreakoutST7735-128x128.ino | 4 ++-- examples/BreakoutST7735-160x128/BreakoutST7735-160x128.ino | 4 ++-- examples/BreakoutST7735-160x80/BreakoutST7735-160x80.ino | 4 ++-- examples/BreakoutST7789-320x240/BreakoutST7789-320x240.ino | 4 ++-- examples/EInkBreakouts/EInkBreakouts.ino | 4 ++-- examples/EInkFeatherWing/EInkFeatherWing.ino | 4 ++-- examples/EInkGizmo/EInkGizmo.ino | 4 ++-- examples/FeatherWingHX8357/FeatherWingHX8357.ino | 4 ++-- examples/FeatherWingILI9341/FeatherWingILI9341.ino | 4 ++-- examples/FeatherWingST7735/FeatherWingST7735.ino | 4 ++-- examples/PyPortal/PyPortal.ino | 4 ++-- examples/ShieldILI9341/ShieldILI9341.ino | 4 ++-- examples/ShieldST7735/ShieldST7735.ino | 4 ++-- examples/TFTGizmo/TFTGizmo.ino | 4 ++-- examples/ThinkInkDisplays/ThinkInkDisplays.ino | 4 ++-- 17 files changed, 34 insertions(+), 34 deletions(-) diff --git a/examples/BreakoutSSD1331/BreakoutSSD1331.ino b/examples/BreakoutSSD1331/BreakoutSSD1331.ino index c7b2e7c..4764edf 100644 --- a/examples/BreakoutSSD1331/BreakoutSSD1331.ino +++ b/examples/BreakoutSSD1331/BreakoutSSD1331.ino @@ -50,7 +50,7 @@ #endif #endif Adafruit_SPIFlash flash(&flashTransport); - FatFileSystem filesys; + FatVolume filesys; Adafruit_ImageReader reader(filesys); // Image-reader, pass in flash filesys #endif @@ -72,7 +72,7 @@ void setup(void) { tft.begin(); // Initialize screen // The Adafruit_ImageReader constructor call (above, before setup()) - // accepts an uninitialized SdFat or FatFileSystem object. This MUST + // accepts an uninitialized SdFat or FatVolume object. This MUST // BE INITIALIZED before using any of the image reader functions! Serial.print(F("Initializing filesystem...")); #if defined(USE_SD_CARD) diff --git a/examples/BreakoutSSD1351/BreakoutSSD1351.ino b/examples/BreakoutSSD1351/BreakoutSSD1351.ino index 1101a2c..5dbdc76 100644 --- a/examples/BreakoutSSD1351/BreakoutSSD1351.ino +++ b/examples/BreakoutSSD1351/BreakoutSSD1351.ino @@ -54,7 +54,7 @@ #endif #endif Adafruit_SPIFlash flash(&flashTransport); - FatFileSystem filesys; + FatVolume filesys; Adafruit_ImageReader reader(filesys); // Image-reader, pass in flash filesys #endif @@ -76,7 +76,7 @@ void setup(void) { tft.begin(); // Initialize screen // The Adafruit_ImageReader constructor call (above, before setup()) - // accepts an uninitialized SdFat or FatFileSystem object. This MUST + // accepts an uninitialized SdFat or FatVolume object. This MUST // BE INITIALIZED before using any of the image reader functions! Serial.print(F("Initializing filesystem...")); #if defined(USE_SD_CARD) diff --git a/examples/BreakoutST7735-128x128/BreakoutST7735-128x128.ino b/examples/BreakoutST7735-128x128/BreakoutST7735-128x128.ino index 0d089fb..e144b49 100644 --- a/examples/BreakoutST7735-128x128/BreakoutST7735-128x128.ino +++ b/examples/BreakoutST7735-128x128/BreakoutST7735-128x128.ino @@ -40,7 +40,7 @@ #endif #endif Adafruit_SPIFlash flash(&flashTransport); - FatFileSystem filesys; + FatVolume filesys; Adafruit_ImageReader reader(filesys); // Image-reader, pass in flash filesys #endif @@ -61,7 +61,7 @@ void setup(void) { tft.initR(INITR_144GREENTAB); // Initialize screen // The Adafruit_ImageReader constructor call (above, before setup()) - // accepts an uninitialized SdFat or FatFileSystem object. This MUST + // accepts an uninitialized SdFat or FatVolume object. This MUST // BE INITIALIZED before using any of the image reader functions! Serial.print(F("Initializing filesystem...")); #if defined(USE_SD_CARD) diff --git a/examples/BreakoutST7735-160x128/BreakoutST7735-160x128.ino b/examples/BreakoutST7735-160x128/BreakoutST7735-160x128.ino index 9f2ffec..8e5fda3 100644 --- a/examples/BreakoutST7735-160x128/BreakoutST7735-160x128.ino +++ b/examples/BreakoutST7735-160x128/BreakoutST7735-160x128.ino @@ -40,7 +40,7 @@ #endif #endif Adafruit_SPIFlash flash(&flashTransport); - FatFileSystem filesys; + FatVolume filesys; Adafruit_ImageReader reader(filesys); // Image-reader, pass in flash filesys #endif @@ -61,7 +61,7 @@ void setup(void) { tft.initR(INITR_BLACKTAB); // Initialize screen // The Adafruit_ImageReader constructor call (above, before setup()) - // accepts an uninitialized SdFat or FatFileSystem object. This MUST + // accepts an uninitialized SdFat or FatVolume object. This MUST // BE INITIALIZED before using any of the image reader functions! Serial.print(F("Initializing filesystem...")); #if defined(USE_SD_CARD) diff --git a/examples/BreakoutST7735-160x80/BreakoutST7735-160x80.ino b/examples/BreakoutST7735-160x80/BreakoutST7735-160x80.ino index 423df0b..abb92b7 100644 --- a/examples/BreakoutST7735-160x80/BreakoutST7735-160x80.ino +++ b/examples/BreakoutST7735-160x80/BreakoutST7735-160x80.ino @@ -41,7 +41,7 @@ #endif #endif Adafruit_SPIFlash flash(&flashTransport); - FatFileSystem filesys; + FatVolume filesys; Adafruit_ImageReader reader(filesys); // Image-reader, pass in flash filesys #endif @@ -63,7 +63,7 @@ void setup(void) { Serial.println(F("TFT initialized.")); // The Adafruit_ImageReader constructor call (above, before setup()) - // accepts an uninitialized SdFat or FatFileSystem object. This MUST + // accepts an uninitialized SdFat or FatVolume object. This MUST // BE INITIALIZED before using any of the image reader functions! Serial.print(F("Initializing filesystem...")); #if defined(USE_SD_CARD) diff --git a/examples/BreakoutST7789-320x240/BreakoutST7789-320x240.ino b/examples/BreakoutST7789-320x240/BreakoutST7789-320x240.ino index cf4a04d..4e9acdd 100644 --- a/examples/BreakoutST7789-320x240/BreakoutST7789-320x240.ino +++ b/examples/BreakoutST7789-320x240/BreakoutST7789-320x240.ino @@ -40,7 +40,7 @@ #endif #endif Adafruit_SPIFlash flash(&flashTransport); - FatFileSystem filesys; + FatVolume filesys; Adafruit_ImageReader reader(filesys); // Image-reader, pass in flash filesys #endif @@ -61,7 +61,7 @@ void setup(void) { tft.init(240, 320); // Init ST7789 320x240 // The Adafruit_ImageReader constructor call (above, before setup()) - // accepts an uninitialized SdFat or FatFileSystem object. This MUST + // accepts an uninitialized SdFat or FatVolume object. This MUST // BE INITIALIZED before using any of the image reader functions! Serial.print(F("Initializing filesystem...")); #if defined(USE_SD_CARD) diff --git a/examples/EInkBreakouts/EInkBreakouts.ino b/examples/EInkBreakouts/EInkBreakouts.ino index 345461c..ee7818b 100644 --- a/examples/EInkBreakouts/EInkBreakouts.ino +++ b/examples/EInkBreakouts/EInkBreakouts.ino @@ -60,7 +60,7 @@ Adafruit_IL0373 display(152, 152, EPD_DC, EPD_RESET, EPD_CS, SRAM_CS, EPD_BUSY); #endif #endif Adafruit_SPIFlash flash(&flashTransport); - FatFileSystem filesys; + FatVolume filesys; Adafruit_ImageReader_EPD reader(filesys); // Image-reader, pass in flash filesys #endif @@ -84,7 +84,7 @@ void setup(void) { #endif // The Adafruit_ImageReader constructor call (above, before setup()) - // accepts an uninitialized SdFat or FatFileSystem object. This MUST + // accepts an uninitialized SdFat or FatVolume object. This MUST // BE INITIALIZED before using any of the image reader functions! Serial.print(F("Initializing filesystem...")); // SPI or QSPI flash requires two steps, one to access the bare flash diff --git a/examples/EInkFeatherWing/EInkFeatherWing.ino b/examples/EInkFeatherWing/EInkFeatherWing.ino index 267f1fb..47f4fa1 100644 --- a/examples/EInkFeatherWing/EInkFeatherWing.ino +++ b/examples/EInkFeatherWing/EInkFeatherWing.ino @@ -76,7 +76,7 @@ Adafruit_IL0373 display(212, 104, EPD_DC, EPD_RESET, EPD_CS, SRAM_CS, EPD_BUSY); #endif #endif Adafruit_SPIFlash flash(&flashTransport); - FatFileSystem filesys; + FatVolume filesys; Adafruit_ImageReader_EPD reader(filesys); // Image-reader, pass in flash filesys #endif @@ -100,7 +100,7 @@ void setup(void) { #endif // The Adafruit_ImageReader constructor call (above, before setup()) - // accepts an uninitialized SdFat or FatFileSystem object. This MUST + // accepts an uninitialized SdFat or FatVolume object. This MUST // BE INITIALIZED before using any of the image reader functions! Serial.print(F("Initializing filesystem...")); // SPI or QSPI flash requires two steps, one to access the bare flash diff --git a/examples/EInkGizmo/EInkGizmo.ino b/examples/EInkGizmo/EInkGizmo.ino index 67bec00..57dc9b2 100644 --- a/examples/EInkGizmo/EInkGizmo.ino +++ b/examples/EInkGizmo/EInkGizmo.ino @@ -32,7 +32,7 @@ ThinkInk_154_Tricolor_Z90 display(EPD_DC, EPD_RESET, EPD_CS, SRAM_CS, EPD_BUSY); #endif Adafruit_SPIFlash flash(&flashTransport); -FatFileSystem filesys; +FatVolume filesys; Adafruit_ImageReader_EPD reader(filesys); // Image-reader, pass in flash filesys Adafruit_Image_EPD img; // An image loaded into RAM @@ -49,7 +49,7 @@ void setup(void) { display.setRotation(3); // The Adafruit_ImageReader constructor call (above, before setup()) - // accepts an uninitialized SdFat or FatFileSystem object. This MUST + // accepts an uninitialized SdFat or FatVolume object. This MUST // BE INITIALIZED before using any of the image reader functions! Serial.print(F("Initializing filesystem...")); // SPI or QSPI flash requires two steps, one to access the bare flash diff --git a/examples/FeatherWingHX8357/FeatherWingHX8357.ino b/examples/FeatherWingHX8357/FeatherWingHX8357.ino index e689191..54316f8 100644 --- a/examples/FeatherWingHX8357/FeatherWingHX8357.ino +++ b/examples/FeatherWingHX8357/FeatherWingHX8357.ino @@ -62,7 +62,7 @@ #endif #endif Adafruit_SPIFlash flash(&flashTransport); - FatFileSystem filesys; + FatVolume filesys; Adafruit_ImageReader reader(filesys); // Image-reader, pass in flash filesys #endif @@ -83,7 +83,7 @@ void setup(void) { tft.begin(); // Initialize screen // The Adafruit_ImageReader constructor call (above, before setup()) - // accepts an uninitialized SdFat or FatFileSystem object. This MUST + // accepts an uninitialized SdFat or FatVolume object. This MUST // BE INITIALIZED before using any of the image reader functions! Serial.print(F("Initializing filesystem...")); #if defined(USE_SD_CARD) diff --git a/examples/FeatherWingILI9341/FeatherWingILI9341.ino b/examples/FeatherWingILI9341/FeatherWingILI9341.ino index 900d69b..fb903d6 100644 --- a/examples/FeatherWingILI9341/FeatherWingILI9341.ino +++ b/examples/FeatherWingILI9341/FeatherWingILI9341.ino @@ -62,7 +62,7 @@ #endif #endif Adafruit_SPIFlash flash(&flashTransport); - FatFileSystem filesys; + FatVolume filesys; Adafruit_ImageReader reader(filesys); // Image-reader, pass in flash filesys #endif @@ -81,7 +81,7 @@ void setup(void) { tft.begin(); // Initialize screen // The Adafruit_ImageReader constructor call (above, before setup()) - // accepts an uninitialized SdFat or FatFileSystem object. This MUST + // accepts an uninitialized SdFat or FatVolume object. This MUST // BE INITIALIZED before using any of the image reader functions! Serial.print(F("Initializing filesystem...")); #if defined(USE_SD_CARD) diff --git a/examples/FeatherWingST7735/FeatherWingST7735.ino b/examples/FeatherWingST7735/FeatherWingST7735.ino index 2ad9f22..d578f43 100644 --- a/examples/FeatherWingST7735/FeatherWingST7735.ino +++ b/examples/FeatherWingST7735/FeatherWingST7735.ino @@ -41,7 +41,7 @@ #endif #endif Adafruit_SPIFlash flash(&flashTransport); - FatFileSystem filesys; + FatVolume filesys; Adafruit_ImageReader reader(filesys); // Image-reader, pass in flash filesys #endif @@ -71,7 +71,7 @@ void setup(void) { Serial.println(F("TFT initialized.")); // The Adafruit_ImageReader constructor call (above, before setup()) - // accepts an uninitialized SdFat or FatFileSystem object. This MUST + // accepts an uninitialized SdFat or FatVolume object. This MUST // BE INITIALIZED before using any of the image reader functions! Serial.print(F("Initializing filesystem...")); #if defined(USE_SD_CARD) diff --git a/examples/PyPortal/PyPortal.ino b/examples/PyPortal/PyPortal.ino index 9dc2ab0..80f4a75 100644 --- a/examples/PyPortal/PyPortal.ino +++ b/examples/PyPortal/PyPortal.ino @@ -38,7 +38,7 @@ #endif #endif Adafruit_SPIFlash flash(&flashTransport); - FatFileSystem filesys; + FatVolume filesys; Adafruit_ImageReader reader(filesys); // Image-reader, pass in flash filesys #endif Adafruit_ILI9341 tft(tft8bitbus, TFT_D0, TFT_WR, TFT_DC, TFT_CS, TFT_RST, TFT_RD); @@ -60,7 +60,7 @@ void setup(void) { tft.begin(); // Initialize screen // The Adafruit_ImageReader constructor call (above, before setup()) - // accepts an uninitialized SdFat or FatFileSystem object. This MUST + // accepts an uninitialized SdFat or FatVolume object. This MUST // BE INITIALIZED before using any of the image reader functions! Serial.print(F("Initializing filesystem...")); #if defined(USE_SD_CARD) diff --git a/examples/ShieldILI9341/ShieldILI9341.ino b/examples/ShieldILI9341/ShieldILI9341.ino index 6dad711..1901b23 100644 --- a/examples/ShieldILI9341/ShieldILI9341.ino +++ b/examples/ShieldILI9341/ShieldILI9341.ino @@ -39,7 +39,7 @@ #endif #endif Adafruit_SPIFlash flash(&flashTransport); - FatFileSystem filesys; + FatVolume filesys; Adafruit_ImageReader reader(filesys); // Image-reader, pass in flash filesys #endif @@ -60,7 +60,7 @@ void setup(void) { tft.begin(); // Initialize screen // The Adafruit_ImageReader constructor call (above, before setup()) - // accepts an uninitialized SdFat or FatFileSystem object. This MUST + // accepts an uninitialized SdFat or FatVolume object. This MUST // BE INITIALIZED before using any of the image reader functions! Serial.print(F("Initializing filesystem...")); #if defined(USE_SD_CARD) diff --git a/examples/ShieldST7735/ShieldST7735.ino b/examples/ShieldST7735/ShieldST7735.ino index 1e54491..d3d0b23 100644 --- a/examples/ShieldST7735/ShieldST7735.ino +++ b/examples/ShieldST7735/ShieldST7735.ino @@ -43,7 +43,7 @@ #endif #endif Adafruit_SPIFlash flash(&flashTransport); - FatFileSystem filesys; + FatVolume filesys; Adafruit_ImageReader reader(filesys); // Image-reader, pass in flash filesys #endif @@ -73,7 +73,7 @@ void setup(void) { tft.initR(INITR_BLACKTAB); // Initialize screen // The Adafruit_ImageReader constructor call (above, before setup()) - // accepts an uninitialized SdFat or FatFileSystem object. This MUST + // accepts an uninitialized SdFat or FatVolume object. This MUST // BE INITIALIZED before using any of the image reader functions! Serial.print(F("Initializing filesystem...")); #if defined(USE_SD_CARD) diff --git a/examples/TFTGizmo/TFTGizmo.ino b/examples/TFTGizmo/TFTGizmo.ino index f92d7b6..ca1a56c 100644 --- a/examples/TFTGizmo/TFTGizmo.ino +++ b/examples/TFTGizmo/TFTGizmo.ino @@ -37,7 +37,7 @@ #endif Adafruit_SPIFlash flash(&flashTransport); -FatFileSystem filesys; +FatVolume filesys; Adafruit_ImageReader reader(filesys); // Image-reader, pass in flash filesys Adafruit_ST7789 tft = Adafruit_ST7789(spi, TFT_CS, TFT_DC, TFT_RST); @@ -58,7 +58,7 @@ void setup(void) { digitalWrite(TFT_BACKLIGHT, HIGH); // Backlight on // The Adafruit_ImageReader constructor call (above, before setup()) - // accepts an uninitialized SdFat or FatFileSystem object. This MUST + // accepts an uninitialized SdFat or FatVolume object. This MUST // BE INITIALIZED before using any of the image reader functions! Serial.print(F("Initializing filesystem...")); // SPI or QSPI flash requires two steps, one to access the bare flash diff --git a/examples/ThinkInkDisplays/ThinkInkDisplays.ino b/examples/ThinkInkDisplays/ThinkInkDisplays.ino index 0b1c582..5cabb69 100644 --- a/examples/ThinkInkDisplays/ThinkInkDisplays.ino +++ b/examples/ThinkInkDisplays/ThinkInkDisplays.ino @@ -61,7 +61,7 @@ ThinkInk_290_Tricolor_Z10 display(EPD_DC, EPD_RESET, EPD_CS, SRAM_CS, EPD_BUSY); #endif #endif Adafruit_SPIFlash flash(&flashTransport); - FatFileSystem filesys; + FatVolume filesys; Adafruit_ImageReader_EPD reader(filesys); // Image-reader, pass in flash filesys #endif @@ -85,7 +85,7 @@ void setup(void) { #endif // The Adafruit_ImageReader constructor call (above, before setup()) - // accepts an uninitialized SdFat or FatFileSystem object. This MUST + // accepts an uninitialized SdFat or FatVolume object. This MUST // BE INITIALIZED before using any of the image reader functions! Serial.print(F("Initializing filesystem...")); // SPI or QSPI flash requires two steps, one to access the bare flash