cardreader.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. #ifndef CARDREADER_H
  2. #define CARDREADER_H
  3. #ifdef SDSUPPORT
  4. #define MAX_DIR_DEPTH 10
  5. #include "SdFile.h"
  6. enum LsAction {LS_SerialPrint,LS_Count,LS_GetFilename};
  7. class CardReader
  8. {
  9. public:
  10. CardReader();
  11. void initsd();
  12. void write_command(char *buf);
  13. void write_command_no_newline(char *buf);
  14. //files auto[0-9].g on the sd card are performed in a row
  15. //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
  16. void checkautostart(bool x);
  17. void openFile(char* name,bool read,bool replace_current=true);
  18. void openLogFile(char* name);
  19. void removeFile(char* name);
  20. void closefile(bool store_location=false);
  21. void release();
  22. void startFileprint();
  23. void pauseSDPrint();
  24. uint32_t getFileSize();
  25. void getStatus();
  26. void printingHasFinished();
  27. void getfilename(uint16_t nr, const char* const match=NULL);
  28. void getfilename_simple(uint32_t position, const char * const match = NULL);
  29. uint16_t getnrfilenames();
  30. void getAbsFilename(char *t);
  31. void getDirName(char* name, uint8_t level);
  32. uint16_t getWorkDirDepth();
  33. void ls();
  34. void chdir(const char * relpath);
  35. void updir();
  36. void setroot();
  37. #ifdef SDCARD_SORT_ALPHA
  38. void presort();
  39. #ifdef SDSORT_QUICKSORT
  40. void swap(uint8_t left, uint8_t right);
  41. void quicksort(uint8_t left, uint8_t right);
  42. #endif //SDSORT_QUICKSORT
  43. void getfilename_sorted(const uint16_t nr);
  44. #if SDSORT_GCODE
  45. FORCE_INLINE void setSortOn(bool b) { sort_alpha = b; presort(); }
  46. FORCE_INLINE void setSortFolders(int i) { sort_folders = i; presort(); }
  47. //FORCE_INLINE void setSortReverse(bool b) { sort_reverse = b; }
  48. #endif
  49. #endif
  50. FORCE_INLINE bool isFileOpen() { return file.isOpen(); }
  51. FORCE_INLINE bool eof() { return sdpos>=filesize ;};
  52. FORCE_INLINE int16_t get() { sdpos = file.curPosition();return (int16_t)file.read();};
  53. FORCE_INLINE void setIndex(long index) {sdpos = index;file.seekSet(index);};
  54. FORCE_INLINE uint8_t percentDone(){if(!isFileOpen()) return 0; if(filesize) return sdpos/((filesize+99)/100); else return 0;};
  55. FORCE_INLINE char* getWorkDirName(){workDir.getFilename(filename);return filename;};
  56. FORCE_INLINE uint32_t get_sdpos() { if (!isFileOpen()) return 0; else return(sdpos); };
  57. bool ToshibaFlashAir_isEnabled() const { return card.getFlashAirCompatible(); }
  58. void ToshibaFlashAir_enable(bool enable) { card.setFlashAirCompatible(enable); }
  59. bool ToshibaFlashAir_GetIP(uint8_t *ip);
  60. public:
  61. bool saving;
  62. bool logging;
  63. bool sdprinting ;
  64. bool cardOK ;
  65. char filename[13];
  66. uint16_t creationTime, creationDate;
  67. uint32_t cluster, position;
  68. char longFilename[LONG_FILENAME_LENGTH];
  69. bool filenameIsDir;
  70. int lastnr; //last number of the autostart;
  71. private:
  72. SdFile root,*curDir,workDir,workDirParents[MAX_DIR_DEPTH];
  73. uint16_t workDirDepth;
  74. // Sort files and folders alphabetically.
  75. #ifdef SDCARD_SORT_ALPHA
  76. uint16_t sort_count; // Count of sorted items in the current directory
  77. #if SDSORT_GCODE
  78. bool sort_alpha; // Flag to enable / disable the feature
  79. int sort_folders; // Flag to enable / disable folder sorting
  80. //bool sort_reverse; // Flag to enable / disable reverse sorting
  81. #endif
  82. // By default the sort index is static
  83. #if SDSORT_DYNAMIC_RAM
  84. uint8_t *sort_order;
  85. #else
  86. uint8_t sort_order[SDSORT_LIMIT];
  87. #endif
  88. // Cache filenames to speed up SD menus.
  89. #if SDSORT_USES_RAM
  90. // If using dynamic ram for names, allocate on the heap.
  91. #if SDSORT_CACHE_NAMES
  92. #if SDSORT_DYNAMIC_RAM
  93. char **sortshort, **sortnames;
  94. #else
  95. char sortshort[SDSORT_LIMIT][FILENAME_LENGTH];
  96. char sortnames[SDSORT_LIMIT][FILENAME_LENGTH];
  97. #endif
  98. #elif !SDSORT_USES_STACK
  99. char sortnames[SDSORT_LIMIT][FILENAME_LENGTH];
  100. uint16_t creation_time[SDSORT_LIMIT];
  101. uint16_t creation_date[SDSORT_LIMIT];
  102. #endif
  103. // Folder sorting uses an isDir array when caching items.
  104. #if HAS_FOLDER_SORTING
  105. #if SDSORT_DYNAMIC_RAM
  106. uint8_t *isDir;
  107. #elif (SDSORT_CACHE_NAMES) || !(SDSORT_USES_STACK)
  108. uint8_t isDir[(SDSORT_LIMIT + 7) >> 3];
  109. #endif
  110. #endif
  111. #endif // SDSORT_USES_RAM
  112. #endif // SDCARD_SORT_ALPHA
  113. Sd2Card card;
  114. SdVolume volume;
  115. SdFile file;
  116. #define SD_PROCEDURE_DEPTH 1
  117. #define MAXPATHNAMELENGTH (13*MAX_DIR_DEPTH+MAX_DIR_DEPTH+1)
  118. uint8_t file_subcall_ctr;
  119. uint32_t filespos[SD_PROCEDURE_DEPTH];
  120. char filenames[SD_PROCEDURE_DEPTH][MAXPATHNAMELENGTH];
  121. uint32_t filesize;
  122. //int16_t n;
  123. unsigned long autostart_atmillis;
  124. uint32_t sdpos ;
  125. bool autostart_stilltocheck; //the sd start is delayed, because otherwise the serial cannot answer fast enought to make contact with the hostsoftware.
  126. LsAction lsAction; //stored for recursion.
  127. 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.
  128. char* diveDirName;
  129. void lsDive(const char *prepend, SdFile parent, const char * const match=NULL);
  130. #ifdef SDCARD_SORT_ALPHA
  131. void flush_presort();
  132. #endif
  133. };
  134. extern CardReader card;
  135. #define IS_SD_PRINTING (card.sdprinting)
  136. #if (SDCARDDETECT > -1)
  137. # ifdef SDCARDDETECTINVERTED
  138. # define IS_SD_INSERTED (READ(SDCARDDETECT)!=0)
  139. # else
  140. # define IS_SD_INSERTED (READ(SDCARDDETECT)==0)
  141. # endif //SDCARDTETECTINVERTED
  142. #else
  143. //If we don't have a card detect line, aways asume the card is inserted
  144. # define IS_SD_INSERTED true
  145. #endif
  146. #else
  147. #define IS_SD_PRINTING (false)
  148. #endif //SDSUPPORT
  149. #endif