2011-11-06 21:39:53 +01:00
# ifndef __CARDREADERH
# define __CARDREADERH
# ifdef SDSUPPORT
2011-11-26 11:51:38 +01: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 ) ;
2011-11-19 13:13:34 +01:00
void openFile ( char * name , bool read ) ;
2011-11-06 21:39:53 +01:00
void closefile ( ) ;
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
2011-11-06 21:39:53 +01:00
void getfilename ( const uint8_t nr ) ;
2011-11-19 13:13:34 +01:00
uint16_t getnrfilenames ( ) ;
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 ( ) ;
2011-11-19 13:13:34 +01:00
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 ) ; } ;
FORCE_INLINE uint8_t percentDone ( ) { if ( ! sdprinting ) return 0 ; if ( filesize ) return sdpos * 100 / filesize ; else return 0 ; } ;
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 ;
bool sdprinting ;
bool cardOK ;
char filename [ 11 ] ;
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 :
2011-11-20 14:43:47 +01:00
SdFile root , * curDir , workDir , workDirParent , workDirParentParent ;
2011-11-06 22:48:15 +01:00
Sd2Card card ;
SdVolume volume ;
2011-11-06 21:39:53 +01:00
SdFile file ;
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.
int16_t nrFiles ; //counter for the files in the current directory and recycled as position counter for getting the nrFiles'th name in the directory.
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
} ;
2011-11-07 22:33:13 +01:00
# else
2011-11-19 20:18:54 +01:00
# define dir_t bool
2011-11-07 22:33:13 +01:00
class CardReader
{
public :
2011-11-27 16:04:58 +01:00
FORCE_INLINE CardReader ( ) { } ;
2011-11-07 22:33:13 +01:00
2011-11-27 16:04:58 +01:00
FORCE_INLINE static void initsd ( ) { } ;
FORCE_INLINE static void write_command ( char * buf ) { } ;
2011-11-07 22:33:13 +01:00
2011-11-27 16:04:58 +01:00
FORCE_INLINE static void checkautostart ( bool x ) { } ;
2011-11-07 22:33:13 +01:00
2011-11-27 16:04:58 +01:00
FORCE_INLINE static void openFile ( char * name , bool read ) { } ;
FORCE_INLINE static void closefile ( ) { } ;
FORCE_INLINE static void release ( ) { } ;
FORCE_INLINE static void startFileprint ( ) { } ;
FORCE_INLINE static void startFilewrite ( char * name ) { } ;
FORCE_INLINE static void pauseSDPrint ( ) { } ;
FORCE_INLINE static void getStatus ( ) { } ;
2011-11-07 22:33:13 +01:00
2011-11-27 16:04:58 +01:00
FORCE_INLINE static void selectFile ( char * name ) { } ;
FORCE_INLINE static void getfilename ( const uint8_t nr ) { } ;
FORCE_INLINE static uint8_t getnrfilenames ( ) { return 0 ; } ;
2011-11-07 22:33:13 +01:00
2011-11-27 16:04:58 +01:00
FORCE_INLINE static void ls ( ) { } ;
FORCE_INLINE static bool eof ( ) { return true ; } ;
FORCE_INLINE static char get ( ) { return 0 ; } ;
FORCE_INLINE static void setIndex ( ) { } ;
FORCE_INLINE uint8_t percentDone ( ) { return 0 ; } ;
2011-11-07 22:33:13 +01:00
} ;
2011-11-06 21:39:53 +01:00
# endif //SDSUPPORT
# endif