2016-03-25 07:19:46 +01:00
|
|
|
/**
|
2016-03-24 19:01:20 +01:00
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 15:00:57 +01:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2016-03-24 19:01:20 +01:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2016-03-24 19:01:20 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2020-07-23 05:20:14 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2016-03-24 19:01:20 +01:00
|
|
|
*
|
|
|
|
*/
|
2018-11-01 21:03:45 +01:00
|
|
|
#pragma once
|
2011-11-06 21:39:53 +01:00
|
|
|
|
2018-03-07 08:42:11 +01:00
|
|
|
#include "../inc/MarlinConfig.h"
|
|
|
|
|
|
|
|
#if ENABLED(SDSUPPORT)
|
|
|
|
|
2021-01-22 22:01:19 +01:00
|
|
|
extern const char M23_STR[], M24_STR[];
|
|
|
|
|
2021-09-21 13:25:13 +02:00
|
|
|
#if ENABLED(SDCARD_SORT_ALPHA)
|
|
|
|
#if ENABLED(SDSORT_DYNAMIC_RAM)
|
|
|
|
#define SD_RESORT 1
|
|
|
|
#endif
|
|
|
|
#if FOLDER_SORTING || ENABLED(SDSORT_GCODE)
|
|
|
|
#define HAS_FOLDER_SORTING 1
|
|
|
|
#endif
|
2020-04-22 23:35:03 +02:00
|
|
|
#endif
|
2018-03-07 08:42:11 +01:00
|
|
|
|
2020-07-17 05:20:55 +02:00
|
|
|
#if ENABLED(SDCARD_RATHERRECENTFIRST) && DISABLED(SDCARD_SORT_ALPHA)
|
|
|
|
#define SD_ORDER(N,C) ((C) - 1 - (N))
|
|
|
|
#else
|
|
|
|
#define SD_ORDER(N,C) N
|
|
|
|
#endif
|
2020-04-26 01:39:47 +02:00
|
|
|
|
2018-11-17 05:39:16 +01:00
|
|
|
#define MAX_DIR_DEPTH 10 // Maximum folder depth
|
|
|
|
#define MAXDIRNAMELENGTH 8 // DOS folder name size
|
|
|
|
#define MAXPATHNAMELENGTH (1 + (MAXDIRNAMELENGTH + 1) * (MAX_DIR_DEPTH) + 1 + FILENAME_LENGTH) // "/" + N * ("ADIRNAME/") + "filename.ext"
|
2013-05-04 13:18:02 +02:00
|
|
|
|
2011-11-19 13:13:34 +01:00
|
|
|
#include "SdFile.h"
|
2021-04-14 00:34:19 +02:00
|
|
|
#include "disk_io_driver.h"
|
|
|
|
|
|
|
|
#if ENABLED(USB_FLASH_DRIVE_SUPPORT)
|
|
|
|
#include "usb_flashdrive/Sd2Card_FlashDrive.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if NEED_SD2CARD_SDIO
|
|
|
|
#include "Sd2Card_sdio.h"
|
|
|
|
#elif NEED_SD2CARD_SPI
|
|
|
|
#include "Sd2Card.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(MULTI_VOLUME)
|
|
|
|
#define SV_SD_ONBOARD 1
|
|
|
|
#define SV_USB_FLASH_DRIVE 2
|
|
|
|
#define _VOLUME_ID(N) _CAT(SV_, N)
|
|
|
|
#define SHARED_VOLUME_IS(N) (DEFAULT_SHARED_VOLUME == _VOLUME_ID(N))
|
|
|
|
#if !SHARED_VOLUME_IS(SD_ONBOARD) && !SHARED_VOLUME_IS(USB_FLASH_DRIVE)
|
|
|
|
#error "DEFAULT_SHARED_VOLUME must be either SD_ONBOARD or USB_FLASH_DRIVE."
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define SHARED_VOLUME_IS(...) 0
|
|
|
|
#endif
|
2016-08-03 04:36:58 +02:00
|
|
|
|
2018-11-17 05:39:16 +01:00
|
|
|
typedef struct {
|
|
|
|
bool saving:1,
|
|
|
|
logging:1,
|
|
|
|
sdprinting:1,
|
2021-05-08 11:35:35 +02:00
|
|
|
sdprintdone:1,
|
2019-09-15 10:10:59 +02:00
|
|
|
mounted:1,
|
2018-11-17 05:39:16 +01:00
|
|
|
filenameIsDir:1,
|
2019-09-17 00:49:55 +02:00
|
|
|
workDirIsRoot:1,
|
2018-11-17 05:39:16 +01:00
|
|
|
abort_sd_printing:1
|
2019-02-28 02:57:48 +01:00
|
|
|
#if ENABLED(BINARY_FILE_TRANSFER)
|
2018-11-17 05:39:16 +01:00
|
|
|
, binary_mode:1
|
|
|
|
#endif
|
|
|
|
;
|
|
|
|
} card_flags_t;
|
|
|
|
|
2021-01-29 03:40:20 +01:00
|
|
|
#if ENABLED(AUTO_REPORT_SD_STATUS)
|
|
|
|
#include "../libs/autoreport.h"
|
|
|
|
#endif
|
|
|
|
|
2015-03-02 16:06:01 +01:00
|
|
|
class CardReader {
|
2011-11-06 21:39:53 +01:00
|
|
|
public:
|
2019-09-28 22:28:05 +02:00
|
|
|
static card_flags_t flag; // Flags (above)
|
|
|
|
static char filename[FILENAME_LENGTH], // DOS 8.3 filename of the selected item
|
|
|
|
longFilename[LONG_FILENAME_LENGTH]; // Long name of the selected item
|
|
|
|
|
|
|
|
// Fast! binary file transfer
|
|
|
|
#if ENABLED(BINARY_FILE_TRANSFER)
|
2020-05-12 12:50:28 +02:00
|
|
|
#if HAS_MULTI_SERIAL
|
2021-03-10 18:33:29 +01:00
|
|
|
static serial_index_t transfer_port_index;
|
2019-09-28 22:28:05 +02:00
|
|
|
#else
|
2021-03-10 18:33:29 +01:00
|
|
|
static constexpr serial_index_t transfer_port_index = 0;
|
2019-09-28 22:28:05 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// // // Methods // // //
|
|
|
|
|
2011-11-06 21:39:53 +01:00
|
|
|
CardReader();
|
2015-03-02 16:06:01 +01:00
|
|
|
|
2021-04-14 00:34:19 +02:00
|
|
|
static void changeMedia(DiskIODriver *_driver) { driver = _driver; }
|
|
|
|
|
2019-09-28 22:28:05 +02:00
|
|
|
static SdFile getroot() { return root; }
|
|
|
|
|
2019-09-15 10:10:59 +02:00
|
|
|
static void mount();
|
2019-09-28 22:28:05 +02:00
|
|
|
static void release();
|
2021-12-28 09:57:24 +01:00
|
|
|
static bool isMounted() { return flag.mounted; }
|
2011-11-06 21:39:53 +01:00
|
|
|
|
2020-04-04 07:08:25 +02:00
|
|
|
// Handle media insert/remove
|
|
|
|
static void manage_media();
|
|
|
|
|
2019-09-28 22:28:05 +02:00
|
|
|
// SD Card Logging
|
2021-04-02 21:30:13 +02:00
|
|
|
static void openLogFile(const char * const path);
|
2021-04-05 22:34:51 +02:00
|
|
|
static void write_command(char * const buf);
|
2019-09-28 22:28:05 +02:00
|
|
|
|
2020-12-07 12:53:15 +01:00
|
|
|
#if DISABLED(NO_SD_AUTOSTART) // Auto-Start auto#.g file handling
|
|
|
|
static uint8_t autofile_index; // Next auto#.g index to run, plus one. Ignored by autofile_check when zero.
|
|
|
|
static void autofile_begin(); // Begin check. Called automatically after boot-up.
|
|
|
|
static bool autofile_check(); // Check for the next auto-start file and run it.
|
2021-12-28 09:57:24 +01:00
|
|
|
static void autofile_cancel() { autofile_index = 0; }
|
2020-12-07 12:53:15 +01:00
|
|
|
#endif
|
2018-05-01 08:01:02 +02:00
|
|
|
|
2019-09-28 22:28:05 +02:00
|
|
|
// Basic file ops
|
2021-04-12 23:49:53 +02:00
|
|
|
static void openFileRead(const char * const path, const uint8_t subcall=0);
|
2021-04-02 21:30:13 +02:00
|
|
|
static void openFileWrite(const char * const path);
|
2018-11-17 05:39:16 +01:00
|
|
|
static void closefile(const bool store_location=false);
|
2020-09-28 22:46:12 +02:00
|
|
|
static bool fileExists(const char * const name);
|
2019-09-28 22:28:05 +02:00
|
|
|
static void removeFile(const char * const name);
|
2011-11-19 20:18:54 +01:00
|
|
|
|
2021-12-28 09:57:24 +01:00
|
|
|
static char* longest_filename() { return longFilename[0] ? longFilename : filename; }
|
2015-07-31 07:21:18 +02:00
|
|
|
#if ENABLED(LONG_FILENAME_HOST_SUPPORT)
|
2019-09-28 22:28:05 +02:00
|
|
|
static void printLongPath(char * const path); // Used by M33
|
2015-05-18 02:36:32 +02:00
|
|
|
#endif
|
|
|
|
|
2019-09-28 22:28:05 +02:00
|
|
|
// Working Directory for SD card menu
|
|
|
|
static void cdroot();
|
|
|
|
static void cd(const char *relpath);
|
|
|
|
static int8_t cdup();
|
2019-09-17 00:49:55 +02:00
|
|
|
static uint16_t countFilesInWorkDir();
|
2019-09-28 22:28:05 +02:00
|
|
|
static uint16_t get_num_Files();
|
2015-03-02 16:06:01 +01:00
|
|
|
|
2019-09-28 22:28:05 +02:00
|
|
|
// Select a file
|
|
|
|
static void selectFileByIndex(const uint16_t nr);
|
2021-05-08 11:35:35 +02:00
|
|
|
static void selectFileByName(const char * const match); // (working directory only)
|
2011-11-06 22:48:15 +01:00
|
|
|
|
2019-09-28 22:28:05 +02:00
|
|
|
// Print job
|
|
|
|
static void report_status();
|
2021-05-08 11:35:35 +02:00
|
|
|
static void getAbsFilenameInCWD(char *dst);
|
|
|
|
static void printSelectedFilename();
|
|
|
|
static void openAndPrintFile(const char *name); // (working directory or full path)
|
|
|
|
static void startOrResumeFilePrinting();
|
|
|
|
static void endFilePrintNow(TERN_(SD_RESORT, const bool re_sort=false));
|
|
|
|
static void abortFilePrintNow(TERN_(SD_RESORT, const bool re_sort=false));
|
|
|
|
static void fileHasFinished();
|
2021-12-28 09:57:24 +01:00
|
|
|
static void abortFilePrintSoon() { flag.abort_sd_printing = isFileOpen(); }
|
|
|
|
static void pauseSDPrint() { flag.sdprinting = false; }
|
|
|
|
static bool isPrinting() { return flag.sdprinting; }
|
|
|
|
static bool isPaused() { return isFileOpen() && !isPrinting(); }
|
2019-10-11 04:03:33 +02:00
|
|
|
#if HAS_PRINT_PROGRESS_PERMYRIAD
|
2021-12-28 09:57:24 +01:00
|
|
|
static uint16_t permyriadDone() {
|
2021-05-08 11:35:35 +02:00
|
|
|
if (flag.sdprintdone) return 10000;
|
|
|
|
if (isFileOpen() && filesize) return sdpos / ((filesize + 9999) / 10000);
|
|
|
|
return 0;
|
|
|
|
}
|
2019-10-11 04:03:33 +02:00
|
|
|
#endif
|
2021-12-28 09:57:24 +01:00
|
|
|
static uint8_t percentDone() {
|
2021-05-08 11:35:35 +02:00
|
|
|
if (flag.sdprintdone) return 100;
|
|
|
|
if (isFileOpen() && filesize) return sdpos / ((filesize + 99) / 100);
|
|
|
|
return 0;
|
|
|
|
}
|
2011-12-26 09:20:33 +01:00
|
|
|
|
2021-05-22 05:45:54 +02:00
|
|
|
/**
|
|
|
|
* Dive down to a relative or absolute path.
|
|
|
|
* Relative paths apply to the workDir.
|
|
|
|
*
|
|
|
|
* update_cwd: Pass 'true' to update the workDir on success.
|
|
|
|
* inDirPtr: On exit your pointer points to the target SdFile.
|
|
|
|
* A nullptr indicates failure.
|
|
|
|
* path: Start with '/' for abs path. End with '/' to get a folder ref.
|
|
|
|
* echo: Set 'true' to print the path throughout the loop.
|
|
|
|
*/
|
|
|
|
static const char* diveToFile(const bool update_cwd, SdFile* &inDirPtr, const char * const path, const bool echo=false);
|
2018-05-24 08:18:56 +02:00
|
|
|
|
2017-02-09 14:02:25 +01:00
|
|
|
#if ENABLED(SDCARD_SORT_ALPHA)
|
2018-11-17 05:39:16 +01:00
|
|
|
static void presort();
|
|
|
|
static void getfilename_sorted(const uint16_t nr);
|
2017-02-09 14:02:25 +01:00
|
|
|
#if ENABLED(SDSORT_GCODE)
|
2021-05-22 05:45:54 +02:00
|
|
|
FORCE_INLINE static void setSortOn(bool b) { sort_alpha = b; presort(); }
|
|
|
|
FORCE_INLINE static void setSortFolders(int i) { sort_folders = i; presort(); }
|
2018-11-17 05:39:16 +01:00
|
|
|
//FORCE_INLINE static void setSortReverse(bool b) { sort_reverse = b; }
|
2017-02-09 14:02:25 +01:00
|
|
|
#endif
|
2018-10-29 19:54:04 +01:00
|
|
|
#else
|
2019-09-28 22:28:05 +02:00
|
|
|
FORCE_INLINE static void getfilename_sorted(const uint16_t nr) { selectFileByIndex(nr); }
|
2017-02-09 14:02:25 +01:00
|
|
|
#endif
|
|
|
|
|
2022-01-09 08:14:03 +01:00
|
|
|
static void ls(
|
|
|
|
TERN_(CUSTOM_FIRMWARE_UPLOAD, const bool onlyBin=false)
|
|
|
|
#if BOTH(CUSTOM_FIRMWARE_UPLOAD, LONG_FILENAME_HOST_SUPPORT)
|
|
|
|
,
|
|
|
|
#endif
|
|
|
|
TERN_(LONG_FILENAME_HOST_SUPPORT, const bool includeLongNames=false)
|
|
|
|
);
|
2021-05-22 05:45:54 +02:00
|
|
|
|
2018-04-22 02:41:26 +02:00
|
|
|
#if ENABLED(POWER_LOSS_RECOVERY)
|
2018-11-17 05:39:16 +01:00
|
|
|
static bool jobRecoverFileExists();
|
|
|
|
static void openJobRecoveryFile(const bool read);
|
|
|
|
static void removeJobRecoveryFile();
|
2018-04-22 02:41:26 +02:00
|
|
|
#endif
|
|
|
|
|
2021-05-08 11:35:35 +02:00
|
|
|
// Current Working Dir - Set by cd, cdup, cdroot, and diveToFile(true, ...)
|
2021-12-28 09:57:24 +01:00
|
|
|
static char* getWorkDirName() { workDir.getDosName(filename); return filename; }
|
|
|
|
static SdFile& getWorkDir() { return workDir.isOpen() ? workDir : root; }
|
2021-05-08 11:35:35 +02:00
|
|
|
|
|
|
|
// Print File stats
|
2021-12-28 09:57:24 +01:00
|
|
|
static uint32_t getFileSize() { return filesize; }
|
|
|
|
static uint32_t getIndex() { return sdpos; }
|
|
|
|
static bool isFileOpen() { return isMounted() && file.isOpen(); }
|
|
|
|
static bool eof() { return getIndex() >= getFileSize(); }
|
2021-05-08 11:35:35 +02:00
|
|
|
|
|
|
|
// File data operations
|
2021-12-28 09:57:24 +01:00
|
|
|
static int16_t get() { int16_t out = (int16_t)file.read(); sdpos = file.curPosition(); return out; }
|
|
|
|
static int16_t read(void *buf, uint16_t nbyte) { return file.isOpen() ? file.read(buf, nbyte) : -1; }
|
|
|
|
static int16_t write(void *buf, uint16_t nbyte) { return file.isOpen() ? file.write(buf, nbyte) : -1; }
|
|
|
|
static void setIndex(const uint32_t index) { file.seekSet((sdpos = index)); }
|
2018-07-07 05:32:15 +02:00
|
|
|
|
2021-04-14 00:34:19 +02:00
|
|
|
// TODO: rename to diskIODriver()
|
|
|
|
static DiskIODriver* diskIODriver() { return driver; }
|
2018-02-26 22:38:27 +01:00
|
|
|
|
|
|
|
#if ENABLED(AUTO_REPORT_SD_STATUS)
|
2021-01-29 03:40:20 +01:00
|
|
|
//
|
|
|
|
// SD Auto Reporting
|
|
|
|
//
|
2021-02-01 01:11:50 +01:00
|
|
|
struct AutoReportSD { static void report() { report_status(); } };
|
|
|
|
static AutoReporter<AutoReportSD> auto_reporter;
|
2018-02-26 22:38:27 +01:00
|
|
|
#endif
|
|
|
|
|
2021-04-14 00:34:19 +02:00
|
|
|
#if SHARED_VOLUME_IS(USB_FLASH_DRIVE) || ENABLED(USB_FLASH_DRIVE_SUPPORT)
|
2021-06-14 07:39:16 +02:00
|
|
|
#define HAS_USB_FLASH_DRIVE 1
|
|
|
|
static DiskIODriver_USBFlash media_driver_usbFlash;
|
2021-04-14 00:34:19 +02:00
|
|
|
#endif
|
2021-06-14 07:39:16 +02:00
|
|
|
|
|
|
|
#if NEED_SD2CARD_SDIO || NEED_SD2CARD_SPI
|
|
|
|
typedef TERN(NEED_SD2CARD_SDIO, DiskIODriver_SDIO, DiskIODriver_SPI_SD) sdcard_driver_t;
|
|
|
|
static sdcard_driver_t media_driver_sdcard;
|
2021-04-14 00:34:19 +02:00
|
|
|
#endif
|
|
|
|
|
2011-11-06 22:48:15 +01:00
|
|
|
private:
|
2019-09-28 22:28:05 +02:00
|
|
|
//
|
|
|
|
// Working directory and parents
|
|
|
|
//
|
2018-11-17 05:39:16 +01:00
|
|
|
static SdFile root, workDir, workDirParents[MAX_DIR_DEPTH];
|
|
|
|
static uint8_t workDirDepth;
|
2017-02-09 14:02:25 +01:00
|
|
|
|
2019-09-28 22:28:05 +02:00
|
|
|
//
|
|
|
|
// Alphabetical file and folder sorting
|
|
|
|
//
|
2017-02-09 14:02:25 +01:00
|
|
|
#if ENABLED(SDCARD_SORT_ALPHA)
|
2018-11-17 05:39:16 +01:00
|
|
|
static uint16_t sort_count; // Count of sorted items in the current directory
|
2017-02-09 14:02:25 +01:00
|
|
|
#if ENABLED(SDSORT_GCODE)
|
2018-11-17 05:39:16 +01:00
|
|
|
static bool sort_alpha; // Flag to enable / disable the feature
|
|
|
|
static int sort_folders; // Folder sorting before/none/after
|
|
|
|
//static bool sort_reverse; // Flag to enable / disable reverse sorting
|
2017-02-09 14:02:25 +01:00
|
|
|
#endif
|
|
|
|
|
2017-02-09 14:05:34 +01:00
|
|
|
// By default the sort index is static
|
|
|
|
#if ENABLED(SDSORT_DYNAMIC_RAM)
|
2018-11-17 05:39:16 +01:00
|
|
|
static uint8_t *sort_order;
|
2017-02-09 14:05:34 +01:00
|
|
|
#else
|
2018-11-17 05:39:16 +01:00
|
|
|
static uint8_t sort_order[SDSORT_LIMIT];
|
2017-02-09 14:05:34 +01:00
|
|
|
#endif
|
2017-02-09 14:02:25 +01:00
|
|
|
|
2019-03-17 05:43:06 +01:00
|
|
|
#if BOTH(SDSORT_USES_RAM, SDSORT_CACHE_NAMES) && DISABLED(SDSORT_DYNAMIC_RAM)
|
2019-05-28 02:50:48 +02:00
|
|
|
#define SORTED_LONGNAME_MAXLEN (SDSORT_CACHE_VFATS) * (FILENAME_LENGTH)
|
|
|
|
#define SORTED_LONGNAME_STORAGE (SORTED_LONGNAME_MAXLEN + 1)
|
2017-10-19 05:18:51 +02:00
|
|
|
#else
|
|
|
|
#define SORTED_LONGNAME_MAXLEN LONG_FILENAME_LENGTH
|
2019-05-28 02:50:48 +02:00
|
|
|
#define SORTED_LONGNAME_STORAGE SORTED_LONGNAME_MAXLEN
|
2017-10-19 05:18:51 +02:00
|
|
|
#endif
|
|
|
|
|
2017-02-09 14:02:25 +01:00
|
|
|
// Cache filenames to speed up SD menus.
|
|
|
|
#if ENABLED(SDSORT_USES_RAM)
|
|
|
|
|
|
|
|
// If using dynamic ram for names, allocate on the heap.
|
|
|
|
#if ENABLED(SDSORT_CACHE_NAMES)
|
2019-09-28 22:28:05 +02:00
|
|
|
static uint16_t nrFiles; // Cache the total count
|
2017-02-09 14:05:34 +01:00
|
|
|
#if ENABLED(SDSORT_DYNAMIC_RAM)
|
2018-11-17 05:39:16 +01:00
|
|
|
static char **sortshort, **sortnames;
|
2017-02-09 14:05:34 +01:00
|
|
|
#else
|
2018-11-20 12:36:19 +01:00
|
|
|
static char sortshort[SDSORT_LIMIT][FILENAME_LENGTH];
|
2017-02-09 14:05:34 +01:00
|
|
|
#endif
|
2019-05-28 02:50:48 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (ENABLED(SDSORT_CACHE_NAMES) && DISABLED(SDSORT_DYNAMIC_RAM)) || NONE(SDSORT_CACHE_NAMES, SDSORT_USES_STACK)
|
|
|
|
static char sortnames[SDSORT_LIMIT][SORTED_LONGNAME_STORAGE];
|
2017-02-09 14:02:25 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Folder sorting uses an isDir array when caching items.
|
2017-02-09 14:05:34 +01:00
|
|
|
#if HAS_FOLDER_SORTING
|
|
|
|
#if ENABLED(SDSORT_DYNAMIC_RAM)
|
2018-11-17 05:39:16 +01:00
|
|
|
static uint8_t *isDir;
|
2017-02-09 14:05:34 +01:00
|
|
|
#elif ENABLED(SDSORT_CACHE_NAMES) || DISABLED(SDSORT_USES_STACK)
|
2021-04-14 00:34:19 +02:00
|
|
|
static uint8_t isDir[(SDSORT_LIMIT + 7) >> 3];
|
2017-02-09 14:05:34 +01:00
|
|
|
#endif
|
2017-02-09 14:02:25 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // SDSORT_USES_RAM
|
|
|
|
|
|
|
|
#endif // SDCARD_SORT_ALPHA
|
|
|
|
|
2021-04-14 00:34:19 +02:00
|
|
|
static DiskIODriver *driver;
|
2018-11-17 05:39:16 +01:00
|
|
|
static SdVolume volume;
|
|
|
|
static SdFile file;
|
|
|
|
|
2020-11-27 04:18:40 +01:00
|
|
|
static uint32_t filesize, // Total size of the current file, in bytes
|
|
|
|
sdpos; // Index most recently read (one behind file.getPos)
|
2019-09-28 22:28:05 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Procedure calls to other files
|
|
|
|
//
|
2020-11-10 01:53:19 +01:00
|
|
|
#if HAS_MEDIA_SUBCALLS
|
|
|
|
static uint8_t file_subcall_ctr;
|
|
|
|
static uint32_t filespos[SD_PROCEDURE_DEPTH];
|
|
|
|
static char proc_filenames[SD_PROCEDURE_DEPTH][MAXPATHNAMELENGTH];
|
2018-11-17 05:39:16 +01:00
|
|
|
#endif
|
2019-09-28 22:28:05 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Directory items
|
|
|
|
//
|
2022-01-09 08:14:03 +01:00
|
|
|
static bool is_visible_entity(const dir_t &p OPTARG(CUSTOM_FIRMWARE_UPLOAD, const bool onlyBin=false));
|
2019-09-28 22:28:05 +02:00
|
|
|
static int countItems(SdFile dir);
|
|
|
|
static void selectByIndex(SdFile dir, const uint8_t index);
|
|
|
|
static void selectByName(SdFile dir, const char * const match);
|
2021-07-07 06:10:35 +02:00
|
|
|
static void printListing(
|
2022-01-06 12:07:47 +01:00
|
|
|
SdFile parent, const char * const prepend
|
2022-01-09 08:14:03 +01:00
|
|
|
OPTARG(CUSTOM_FIRMWARE_UPLOAD, const bool onlyBin=false)
|
2021-07-07 06:10:35 +02:00
|
|
|
OPTARG(LONG_FILENAME_HOST_SUPPORT, const bool includeLongNames=false)
|
|
|
|
OPTARG(LONG_FILENAME_HOST_SUPPORT, const char * const prependLong=nullptr)
|
|
|
|
);
|
2019-09-28 22:28:05 +02:00
|
|
|
|
|
|
|
#if ENABLED(SDCARD_SORT_ALPHA)
|
|
|
|
static void flush_presort();
|
|
|
|
#endif
|
2011-11-06 21:39:53 +01:00
|
|
|
};
|
2015-03-02 16:06:01 +01:00
|
|
|
|
2018-07-02 17:06:17 +02:00
|
|
|
#if ENABLED(USB_FLASH_DRIVE_SUPPORT)
|
2021-04-14 00:34:19 +02:00
|
|
|
#define IS_SD_INSERTED() DiskIODriver_USBFlash::isInserted()
|
2018-07-02 17:06:17 +02:00
|
|
|
#elif PIN_EXISTS(SD_DETECT)
|
2020-03-10 21:43:06 +01:00
|
|
|
#define IS_SD_INSERTED() (READ(SD_DETECT_PIN) == SD_DETECT_STATE)
|
2012-12-03 12:52:00 +01:00
|
|
|
#else
|
2018-03-07 08:42:11 +01:00
|
|
|
// No card detect line? Assume the card is inserted.
|
2018-10-19 20:52:44 +02:00
|
|
|
#define IS_SD_INSERTED() true
|
2012-12-03 12:52:00 +01:00
|
|
|
#endif
|
|
|
|
|
2021-05-08 11:35:35 +02:00
|
|
|
#define IS_SD_PRINTING() (card.flag.sdprinting && !card.flag.abort_sd_printing)
|
|
|
|
#define IS_SD_FETCHING() (!card.flag.sdprintdone && IS_SD_PRINTING())
|
2019-10-03 01:54:20 +02:00
|
|
|
#define IS_SD_PAUSED() card.isPaused()
|
2018-11-01 21:03:45 +01:00
|
|
|
#define IS_SD_FILE_OPEN() card.isFileOpen()
|
|
|
|
|
2018-03-07 08:42:11 +01:00
|
|
|
extern CardReader card;
|
|
|
|
|
2018-11-01 21:03:45 +01:00
|
|
|
#else // !SDSUPPORT
|
2018-03-07 08:42:11 +01:00
|
|
|
|
2018-11-01 21:03:45 +01:00
|
|
|
#define IS_SD_PRINTING() false
|
2021-05-08 11:35:35 +02:00
|
|
|
#define IS_SD_FETCHING() false
|
2019-10-03 01:54:20 +02:00
|
|
|
#define IS_SD_PAUSED() false
|
2018-11-01 21:03:45 +01:00
|
|
|
#define IS_SD_FILE_OPEN() false
|
2011-11-19 20:18:54 +01:00
|
|
|
|
2019-10-16 20:51:18 +02:00
|
|
|
#define LONG_FILENAME_LENGTH 0
|
|
|
|
|
2018-11-01 21:03:45 +01:00
|
|
|
#endif // !SDSUPPORT
|