2012-06-02 20:44:17 +02:00
# ifndef CARDREADER_H
# define CARDREADER_H
2011-11-06 21:39:53 +01:00
# ifdef SDSUPPORT
2011-11-26 11:51:38 +01:00
2014-11-24 23:03:20 +01:00
# define MAX_DIR_DEPTH 10 // Maximum folder depth
# define SORT_USES_RAM false // Buffer while sorting, else re-read from SD
# define SORT_USES_MORE_RAM false // Always keep the directory in RAM
2014-11-26 16:17:47 +01:00
# define SORT_LIMIT 64 // Maximum number of sorted items
2014-11-24 23:03:20 +01:00
# define FOLDER_SORTING -1 // -1=above 0=none 1=below
2013-05-04 13:18:02 +02:00
2011-11-19 13:13:34 +01:00
# include "SdFile.h"
enum LsAction { LS_SerialPrint , LS_Count , LS_GetFilename } ;
2011-11-06 21:39:53 +01:00
class CardReader
{
public :
CardReader ( ) ;
void initsd ( ) ;
void write_command ( char * buf ) ;
//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 ) ;
2013-10-22 10:02:18 +02:00
void openFile ( char * name , bool read , bool replace_current = true ) ;
2013-04-01 01:59:16 +02:00
void openLogFile ( char * name ) ;
2012-03-03 21:58:12 +01:00
void removeFile ( char * name ) ;
2013-10-22 10:04:08 +02:00
void closefile ( bool store_location = false ) ;
2011-11-06 22:48:15 +01:00
void release ( ) ;
void startFileprint ( ) ;
void pauseSDPrint ( ) ;
void getStatus ( ) ;
2011-11-26 11:51:38 +01:00
void printingHasFinished ( ) ;
2011-11-19 20:18:54 +01:00
2014-11-26 16:17:47 +01:00
void getfilename ( const uint16_t nr ) ;
2011-11-19 13:13:34 +01:00
uint16_t getnrfilenames ( ) ;
2011-11-06 22:48:15 +01:00
2013-10-22 10:02:18 +02:00
void getAbsFilename ( char * t ) ;
2011-11-06 22:48:15 +01:00
2011-11-19 13:13:34 +01:00
void ls ( ) ;
2011-11-20 14:43:47 +01:00
void chdir ( const char * relpath ) ;
void updir ( ) ;
2011-12-26 09:20:33 +01:00
void setroot ( ) ;
2014-11-24 23:03:20 +01:00
# ifdef SDCARD_SORT_ALPHA
void presort ( ) ;
void flush_presort ( ) ;
2014-11-26 16:17:47 +01:00
void getfilename_sorted ( const uint16_t nr ) ;
2014-11-24 23:03:20 +01:00
# endif
2011-11-19 13:13:34 +01:00
2012-12-12 11:47:03 +01:00
FORCE_INLINE bool isFileOpen ( ) { return file . isOpen ( ) ; }
2011-11-27 16:04:58 +01:00
FORCE_INLINE bool eof ( ) { return sdpos > = filesize ; } ;
FORCE_INLINE int16_t get ( ) { sdpos = file . curPosition ( ) ; return ( int16_t ) file . read ( ) ; } ;
FORCE_INLINE void setIndex ( long index ) { sdpos = index ; file . seekSet ( index ) ; } ;
2012-12-12 11:47:03 +01:00
FORCE_INLINE uint8_t percentDone ( ) { if ( ! isFileOpen ( ) ) return 0 ; if ( filesize ) return sdpos / ( ( filesize + 99 ) / 100 ) ; else return 0 ; } ;
2011-11-27 16:04:58 +01:00
FORCE_INLINE char * getWorkDirName ( ) { workDir . getFilename ( filename ) ; return filename ; } ;
2011-11-06 21:39:53 +01:00
public :
2011-11-06 22:48:15 +01:00
bool saving ;
2013-04-01 01:59:16 +02:00
bool logging ;
2014-11-26 16:17:47 +01:00
bool sdprinting ;
2014-11-24 23:03:20 +01:00
bool cardOK ;
char filename [ FILENAME_LENGTH ] ;
2014-11-26 16:17:47 +01:00
char longFilename [ LONG_FILENAME_LENGTH ] ;
2011-11-20 14:43:47 +01:00
bool filenameIsDir ;
2011-12-09 12:33:00 +01:00
int lastnr ; //last number of the autostart;
2011-11-06 22:48:15 +01:00
private :
2013-05-04 13:18:02 +02:00
SdFile root , * curDir , workDir , workDirParents [ MAX_DIR_DEPTH ] ;
uint16_t workDirDepth ;
2014-11-24 23:03:20 +01:00
# ifdef SDCARD_SORT_ALPHA
2014-11-26 16:17:47 +01:00
uint16_t sort_count ;
uint8_t * sort_order ;
2014-11-24 23:03:20 +01:00
# if SORT_USES_MORE_RAM
2014-11-26 17:51:31 +01:00
char * * sortshort ;
2014-11-24 23:03:20 +01:00
char * * sortnames ;
2014-11-26 16:17:47 +01:00
uint8_t * isDir ;
2014-11-24 23:03:20 +01:00
# endif
# endif
2011-11-06 22:48:15 +01:00
Sd2Card card ;
SdVolume volume ;
2011-11-06 21:39:53 +01:00
SdFile file ;
2013-10-22 10:02:18 +02:00
# define SD_PROCEDURE_DEPTH 1
2014-11-24 23:03:20 +01:00
# define MAXPATHNAMELENGTH (FILENAME_LENGTH*MAX_DIR_DEPTH+MAX_DIR_DEPTH+1)
2013-10-22 10:02:18 +02:00
uint8_t file_subcall_ctr ;
uint32_t filespos [ SD_PROCEDURE_DEPTH ] ;
char filenames [ SD_PROCEDURE_DEPTH ] [ MAXPATHNAMELENGTH ] ;
2011-11-06 21:39:53 +01:00
uint32_t filesize ;
2011-11-06 22:48:15 +01:00
//int16_t n;
unsigned long autostart_atmillis ;
2011-11-06 21:39:53 +01:00
uint32_t sdpos ;
2011-11-06 22:48:15 +01:00
bool autostart_stilltocheck ; //the sd start is delayed, because otherwise the serial cannot answer fast enought to make contact with the hostsoftware.
2011-11-19 13:13:34 +01:00
LsAction lsAction ; //stored for recursion.
2014-11-26 16:17:47 +01: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.
2011-11-19 13:13:34 +01:00
char * diveDirName ;
2011-12-04 12:40:18 +01:00
void lsDive ( const char * prepend , SdFile parent ) ;
2011-11-06 21:39:53 +01:00
} ;
2012-12-03 12:13:20 +01:00
extern CardReader card ;
2012-02-29 15:33:23 +01:00
# define IS_SD_PRINTING (card.sdprinting)
2011-11-07 22:33:13 +01:00
2012-12-03 12:52:00 +01:00
# 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
2011-11-07 22:33:13 +01:00
# else
2011-11-19 20:18:54 +01:00
2012-02-29 15:33:23 +01:00
# define IS_SD_PRINTING (false)
2011-11-07 22:33:13 +01:00
2011-11-06 21:39:53 +01:00
# endif //SDSUPPORT
2012-12-03 11:35:36 +01:00
# endif