Skip to content
Snippets Groups Projects
cardreader.h 3.07 KiB
Newer Older
  • Learn to ignore specific revisions
  • Bernhard's avatar
    Bernhard committed
    #ifndef CARDREADER_H
    #define CARDREADER_H
    
    #if ENABLED(SDSUPPORT)
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    #define MAX_DIR_DEPTH 10          // Maximum folder depth
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    enum LsAction { LS_SerialPrint, LS_Count, LS_GetFilename };
    
    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
    
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      void checkautostart(bool x);
    
    bkubicek's avatar
    bkubicek committed
      void openFile(char* name,bool read,bool replace_current=true);
    
      void removeFile(char* name);
    
    bkubicek's avatar
    bkubicek committed
      void closefile(bool store_location=false);
    
      void release();
      void startFileprint();
      void pauseSDPrint();
      void getStatus();
    
      void printingHasFinished();
    
      #if ENABLED(LONG_FILENAME_HOST_SUPPORT)
    
        void printLongPath(char *path);
      #endif
    
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      void getfilename(uint16_t nr, const char* const match=NULL);
    
    bkubicek's avatar
    bkubicek committed
      void getAbsFilename(char *t);
    
      void chdir(const char * relpath);
      void updir();
    
      void setroot();
    
    
      FORCE_INLINE bool isFileOpen() { return file.isOpen(); }
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      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() { return (isFileOpen() && filesize) ? sdpos / ((filesize + 99) / 100) : 0; }
      FORCE_INLINE char* getWorkDirName() { workDir.getFilename(filename); return filename; }
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      bool saving, logging, sdprinting, cardOK, filenameIsDir;
      char filename[FILENAME_LENGTH], longFilename[LONG_FILENAME_LENGTH];
    
      int autostart_index;
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      SdFile root, *curDir, workDir, workDirParents[MAX_DIR_DEPTH];
    
      uint16_t workDirDepth;
    
      Sd2Card card;
      SdVolume volume;
    
    bkubicek's avatar
    bkubicek committed
      #define SD_PROCEDURE_DEPTH 1
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      #define MAXPATHNAMELENGTH (FILENAME_LENGTH*MAX_DIR_DEPTH + MAX_DIR_DEPTH + 1)
    
    bkubicek's avatar
    bkubicek committed
      uint8_t file_subcall_ctr;
      uint32_t filespos[SD_PROCEDURE_DEPTH];
      char filenames[SD_PROCEDURE_DEPTH][MAXPATHNAMELENGTH];
    
      uint32_t filesize;
    
      millis_t next_autostart_ms;
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      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.
    
      LsAction lsAction; //stored for recursion.
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      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.
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      void lsDive(const char *prepend, SdFile parent, const char * const match=NULL);
    
    #define IS_SD_PRINTING (card.sdprinting)
    
    #if PIN_EXISTS(SD_DETECT)
      #if ENABLED(SD_DETECT_INVERTED)
        #define IS_SD_INSERTED (READ(SD_DETECT_PIN) != 0)
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      #else
    
        #define IS_SD_INSERTED (READ(SD_DETECT_PIN) == 0)
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      #endif
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      //No card detect line? Assume the card is inserted.
      #define IS_SD_INSERTED true
    
    #define IS_SD_PRINTING (false)
    
    #endif //SDSUPPORT
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    
    #endif //__CARDREADER_H