2016-07-22 15:28:01 +02:00
# ifndef CARDREADER_H
# define CARDREADER_H
2021-01-27 09:33:28 +01:00
# define SDSUPPORT
2016-07-22 15:28:01 +02:00
# ifdef SDSUPPORT
2021-02-02 19:08:19 +02:00
# define MAX_DIR_DEPTH 6
2016-07-22 15:28:01 +02:00
# include "SdFile.h"
class CardReader
{
public :
CardReader ( ) ;
2021-04-19 14:48:50 +03:00
enum LsAction : uint8_t
{
LS_SerialPrint ,
LS_Count ,
LS_GetFilename ,
} ;
struct ls_param
{
bool LFN : 1 ;
bool timestamp : 1 ;
2021-04-20 06:50:37 +02:00
inline ls_param ( ) : LFN ( 0 ) , timestamp ( 0 ) { }
inline ls_param ( bool LFN , bool timestamp ) : LFN ( LFN ) , timestamp ( timestamp ) { }
2021-04-19 14:48:50 +03:00
} __attribute__ ( ( packed ) ) ;
2021-06-20 22:30:47 -07:00
void initsd ( bool doPresort = true ) ;
2016-07-22 15:28:01 +02:00
void write_command ( char * buf ) ;
2017-03-24 19:47:50 +01:00
void write_command_no_newline ( char * buf ) ;
2016-07-22 15:28:01 +02:00
//files auto[0-9].g on the sd card are performed in a row
//this is to delay autostart and hence the initialisaiton of the sd card to some seconds after the normal init, so the device is available quick after a reset
void checkautostart ( bool x ) ;
2021-01-28 09:37:58 +01:00
void openFileWrite ( const char * name ) ;
void openFileReadFilteredGcode ( const char * name , bool replace_current = false ) ;
2018-07-17 17:31:40 +02:00
void openLogFile ( const char * name ) ;
void removeFile ( const char * name ) ;
2016-07-22 15:28:01 +02:00
void closefile ( bool store_location = false ) ;
void release ( ) ;
void startFileprint ( ) ;
2017-12-06 14:55:53 +01:00
uint32_t getFileSize ( ) ;
2021-02-01 14:54:37 +02:00
void getStatus ( bool arg_P ) ;
2016-07-22 15:28:01 +02:00
void printingHasFinished ( ) ;
void getfilename ( uint16_t nr , const char * const match = NULL ) ;
2017-12-11 11:30:49 +01:00
void getfilename_simple ( uint32_t position , const char * const match = NULL ) ;
2021-02-09 20:31:02 +02:00
void getfilename_next ( uint32_t position , const char * const match = NULL ) ;
2016-07-22 15:28:01 +02:00
uint16_t getnrfilenames ( ) ;
void getAbsFilename ( char * t ) ;
2021-02-07 21:51:44 +02:00
void printAbsFilenameFast ( ) ;
2017-11-27 06:20:51 +01:00
void getDirName ( char * name , uint8_t level ) ;
uint16_t getWorkDirDepth ( ) ;
2016-07-22 15:28:01 +02:00
2021-04-20 06:50:37 +02:00
void ls ( ls_param params ) ;
2021-02-06 14:59:11 +02:00
bool chdir ( const char * relpath , bool doPresort ) ;
2016-07-22 15:28:01 +02:00
void updir ( ) ;
2021-02-06 14:59:11 +02:00
void setroot ( bool doPresort ) ;
2016-07-22 15:28:01 +02:00
2017-12-10 11:08:50 +01:00
# ifdef SDCARD_SORT_ALPHA
void presort ( ) ;
2017-12-11 11:30:49 +01:00
# ifdef SDSORT_QUICKSORT
void swap ( uint8_t left , uint8_t right ) ;
void quicksort ( uint8_t left , uint8_t right ) ;
# endif //SDSORT_QUICKSORT
2021-02-26 19:17:14 +02:00
void getfilename_sorted ( const uint16_t nr , uint8_t sdSort ) ;
2017-12-10 11:08:50 +01:00
# endif
2016-07-22 15:28:01 +02:00
FORCE_INLINE bool isFileOpen ( ) { return file . isOpen ( ) ; }
2021-02-10 11:18:59 +01:00
bool eof ( ) { return sdpos > = filesize ; }
2021-04-18 00:06:56 +02:00
FORCE_INLINE int16_t getFilteredGcodeChar ( )
{
int16_t c = ( int16_t ) file . readFilteredGcode ( ) ;
sdpos = file . curPosition ( ) ;
return c ;
} ;
2021-02-10 11:18:59 +01:00
void setIndex ( long index ) { sdpos = index ; file . seekSetFilteredGcode ( index ) ; } ;
2016-07-22 15:28:01 +02:00
FORCE_INLINE uint8_t percentDone ( ) { if ( ! isFileOpen ( ) ) return 0 ; if ( filesize ) return sdpos / ( ( filesize + 99 ) / 100 ) ; else return 0 ; } ;
FORCE_INLINE char * getWorkDirName ( ) { workDir . getFilename ( filename ) ; return filename ; } ;
2017-07-02 21:01:23 +02:00
FORCE_INLINE uint32_t get_sdpos ( ) { if ( ! isFileOpen ( ) ) return 0 ; else return ( sdpos ) ; } ;
2016-07-22 15:28:01 +02:00
2016-08-11 10:42:53 +02:00
bool ToshibaFlashAir_isEnabled ( ) const { return card . getFlashAirCompatible ( ) ; }
void ToshibaFlashAir_enable ( bool enable ) { card . setFlashAirCompatible ( enable ) ; }
2016-07-22 15:28:01 +02:00
bool ToshibaFlashAir_GetIP ( uint8_t * ip ) ;
public :
bool saving ;
bool logging ;
bool sdprinting ;
bool cardOK ;
char filename [ 13 ] ;
2020-02-14 09:09:15 +01:00
// There are scenarios when simple modification time is not enough (on MS Windows)
// Therefore these timestamps hold the most recent one of creation/modification date/times
uint16_t crmodTime , crmodDate ;
2021-02-09 20:29:06 +02:00
uint32_t /* cluster, */ position ;
2016-07-22 15:28:01 +02:00
char longFilename [ LONG_FILENAME_LENGTH ] ;
bool filenameIsDir ;
int lastnr ; //last number of the autostart;
2021-02-06 14:59:11 +02:00
# ifdef SDCARD_SORT_ALPHA
bool presort_flag ;
char dir_names [ MAX_DIR_DEPTH ] [ 9 ] ;
# endif // SDCARD_SORT_ALPHA
2016-07-22 15:28:01 +02:00
private :
SdFile root , * curDir , workDir , workDirParents [ MAX_DIR_DEPTH ] ;
uint16_t workDirDepth ;
2017-12-10 11:08:50 +01:00
// Sort files and folders alphabetically.
# ifdef SDCARD_SORT_ALPHA
uint16_t sort_count ; // Count of sorted items in the current directory
2019-12-17 00:44:47 +02:00
uint32_t sort_positions [ SDSORT_LIMIT ] ;
2017-12-10 11:08:50 +01:00
# endif // SDCARD_SORT_ALPHA
2018-02-20 18:50:20 +01:00
# ifdef DEBUG_SD_SPEED_TEST
public :
2018-05-30 13:39:24 +02:00
# endif //DEBUG_SD_SPEED_TEST
2016-07-22 15:28:01 +02:00
Sd2Card card ;
2018-02-20 18:50:20 +01:00
private :
2016-07-22 15:28:01 +02:00
SdVolume volume ;
SdFile file ;
# define SD_PROCEDURE_DEPTH 1
# define MAXPATHNAMELENGTH (13*MAX_DIR_DEPTH+MAX_DIR_DEPTH+1)
uint8_t file_subcall_ctr ;
uint32_t filespos [ SD_PROCEDURE_DEPTH ] ;
char filenames [ SD_PROCEDURE_DEPTH ] [ MAXPATHNAMELENGTH ] ;
uint32_t filesize ;
//int16_t n;
unsigned long autostart_atmillis ;
uint32_t sdpos ;
bool autostart_stilltocheck ; //the sd start is delayed, because otherwise the serial cannot answer fast enought to make contact with the hostsoftware.
2021-07-19 18:02:40 +00:00
uint16_t nrFiles ; //counter for the files in the current directory and recycled as position counter for getting the nrFiles'th name in the directory.
2016-07-22 15:28:01 +02:00
char * diveDirName ;
2018-08-06 20:49:40 +02:00
2021-02-06 14:59:11 +02:00
bool diveSubfolder ( const char * & fileName ) ;
2021-04-20 06:50:37 +02:00
void lsDive ( const char * prepend , SdFile parent , const char * const match = NULL , LsAction lsAction = LS_GetFilename , ls_param lsParams = ls_param ( ) ) ;
2017-12-11 11:30:49 +01:00
# ifdef SDCARD_SORT_ALPHA
void flush_presort ( ) ;
# endif
2016-07-22 15:28:01 +02:00
} ;
2019-05-18 21:28:59 +02:00
extern bool Stopped ;
2016-07-22 15:28:01 +02:00
extern CardReader card ;
# define IS_SD_PRINTING (card.sdprinting)
# if (SDCARDDETECT > -1)
# ifdef SDCARDDETECTINVERTED
# define IS_SD_INSERTED (READ(SDCARDDETECT)!=0)
# else
# define IS_SD_INSERTED (READ(SDCARDDETECT)==0)
# endif //SDCARDTETECTINVERTED
# else
//If we don't have a card detect line, aways asume the card is inserted
# define IS_SD_INSERTED true
# endif
# else
# define IS_SD_PRINTING (false)
# endif //SDSUPPORT
# endif