My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cardreader.cpp 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603
  1. #include "Marlin.h"
  2. #include "cardreader.h"
  3. #include "ultralcd.h"
  4. #include "stepper.h"
  5. #include "temperature.h"
  6. #include "language.h"
  7. #if ENABLED(SDSUPPORT)
  8. CardReader::CardReader() {
  9. filesize = 0;
  10. sdpos = 0;
  11. sdprinting = false;
  12. cardOK = false;
  13. saving = false;
  14. logging = false;
  15. workDirDepth = 0;
  16. file_subcall_ctr = 0;
  17. memset(workDirParents, 0, sizeof(workDirParents));
  18. autostart_stilltocheck = true; //the SD start is delayed, because otherwise the serial cannot answer fast enough to make contact with the host software.
  19. autostart_index = 0;
  20. //power to SD reader
  21. #if SDPOWER > -1
  22. OUT_WRITE(SDPOWER, HIGH);
  23. #endif //SDPOWER
  24. next_autostart_ms = millis() + 5000;
  25. }
  26. char *createFilename(char *buffer, const dir_t &p) { //buffer > 12characters
  27. char *pos = buffer;
  28. for (uint8_t i = 0; i < 11; i++) {
  29. if (p.name[i] == ' ') continue;
  30. if (i == 8) *pos++ = '.';
  31. *pos++ = p.name[i];
  32. }
  33. *pos++ = 0;
  34. return buffer;
  35. }
  36. /**
  37. * Dive into a folder and recurse depth-first to perform a pre-set operation lsAction:
  38. * LS_Count - Add +1 to nrFiles for every file within the parent
  39. * LS_GetFilename - Get the filename of the file indexed by nrFiles
  40. * LS_SerialPrint - Print the full path of each file to serial output
  41. */
  42. void CardReader::lsDive(const char *prepend, SdFile parent, const char * const match/*=NULL*/) {
  43. dir_t p;
  44. uint8_t cnt = 0;
  45. // Read the next entry from a directory
  46. while (parent.readDir(p, longFilename) > 0) {
  47. // If the entry is a directory and the action is LS_SerialPrint
  48. if (DIR_IS_SUBDIR(&p) && lsAction != LS_Count && lsAction != LS_GetFilename) {
  49. // Get the short name for the item, which we know is a folder
  50. char lfilename[FILENAME_LENGTH];
  51. createFilename(lfilename, p);
  52. // Allocate enough stack space for the full path to a folder, trailing slash, and nul
  53. boolean prepend_is_empty = (prepend[0] == '\0');
  54. int len = (prepend_is_empty ? 1 : strlen(prepend)) + strlen(lfilename) + 1 + 1;
  55. char path[len];
  56. // Append the FOLDERNAME12/ to the passed string.
  57. // It contains the full path to the "parent" argument.
  58. // We now have the full path to the item in this folder.
  59. strcpy(path, prepend_is_empty ? "/" : prepend); // root slash if prepend is empty
  60. strcat(path, lfilename); // FILENAME_LENGTH-1 characters maximum
  61. strcat(path, "/"); // 1 character
  62. // Serial.print(path);
  63. // Get a new directory object using the full path
  64. // and dive recursively into it.
  65. SdFile dir;
  66. if (!dir.open(parent, lfilename, O_READ)) {
  67. if (lsAction == LS_SerialPrint) {
  68. SERIAL_ECHO_START;
  69. SERIAL_ECHOLN(MSG_SD_CANT_OPEN_SUBDIR);
  70. SERIAL_ECHOLN(lfilename);
  71. }
  72. }
  73. lsDive(path, dir);
  74. // close() is done automatically by destructor of SdFile
  75. }
  76. else {
  77. char pn0 = p.name[0];
  78. if (pn0 == DIR_NAME_FREE) break;
  79. if (pn0 == DIR_NAME_DELETED || pn0 == '.') continue;
  80. if (longFilename[0] == '.') continue;
  81. if (!DIR_IS_FILE_OR_SUBDIR(&p)) continue;
  82. filenameIsDir = DIR_IS_SUBDIR(&p);
  83. if (!filenameIsDir && (p.name[8] != 'G' || p.name[9] == '~')) continue;
  84. switch (lsAction) {
  85. case LS_Count:
  86. nrFiles++;
  87. break;
  88. case LS_SerialPrint:
  89. createFilename(filename, p);
  90. SERIAL_PROTOCOL(prepend);
  91. SERIAL_PROTOCOLLN(filename);
  92. break;
  93. case LS_GetFilename:
  94. createFilename(filename, p);
  95. if (match != NULL) {
  96. if (strcasecmp(match, filename) == 0) return;
  97. }
  98. else if (cnt == nrFiles) return;
  99. cnt++;
  100. break;
  101. }
  102. }
  103. } // while readDir
  104. }
  105. void CardReader::ls() {
  106. lsAction = LS_SerialPrint;
  107. root.rewind();
  108. lsDive("", root);
  109. }
  110. #if ENABLED(LONG_FILENAME_HOST_SUPPORT)
  111. /**
  112. * Get a long pretty path based on a DOS 8.3 path
  113. */
  114. void CardReader::printLongPath(char *path) {
  115. lsAction = LS_GetFilename;
  116. int i, pathLen = strlen(path);
  117. // SERIAL_ECHOPGM("Full Path: "); SERIAL_ECHOLN(path);
  118. // Zero out slashes to make segments
  119. for (i = 0; i < pathLen; i++) if (path[i] == '/') path[i] = '\0';
  120. SdFile diveDir = root; // start from the root for segment 1
  121. for (i = 0; i < pathLen;) {
  122. if (path[i] == '\0') i++; // move past a single nul
  123. char *segment = &path[i]; // The segment after most slashes
  124. // If a segment is empty (extra-slash) then exit
  125. if (!*segment) break;
  126. // Go to the next segment
  127. while (path[++i]) { }
  128. // SERIAL_ECHOPGM("Looking for segment: "); SERIAL_ECHOLN(segment);
  129. // Find the item, setting the long filename
  130. diveDir.rewind();
  131. lsDive("", diveDir, segment);
  132. // Print /LongNamePart to serial output
  133. SERIAL_PROTOCOLCHAR('/');
  134. SERIAL_PROTOCOL(longFilename[0] ? longFilename : "???");
  135. // If the filename was printed then that's it
  136. if (!filenameIsDir) break;
  137. // SERIAL_ECHOPGM("Opening dir: "); SERIAL_ECHOLN(segment);
  138. // Open the sub-item as the new dive parent
  139. SdFile dir;
  140. if (!dir.open(diveDir, segment, O_READ)) {
  141. SERIAL_EOL;
  142. SERIAL_ECHO_START;
  143. SERIAL_ECHOPGM(MSG_SD_CANT_OPEN_SUBDIR);
  144. SERIAL_ECHO(segment);
  145. break;
  146. }
  147. diveDir.close();
  148. diveDir = dir;
  149. } // while i<pathLen
  150. SERIAL_EOL;
  151. }
  152. #endif // LONG_FILENAME_HOST_SUPPORT
  153. void CardReader::initsd() {
  154. cardOK = false;
  155. if (root.isOpen()) root.close();
  156. #if ENABLED(SDEXTRASLOW)
  157. #define SPI_SPEED SPI_QUARTER_SPEED
  158. #elif ENABLED(SDSLOW)
  159. #define SPI_SPEED SPI_HALF_SPEED
  160. #else
  161. #define SPI_SPEED SPI_FULL_SPEED
  162. #endif
  163. if (!card.init(SPI_SPEED,SDSS)
  164. #if defined(LCD_SDSS) && (LCD_SDSS != SDSS)
  165. && !card.init(SPI_SPEED, LCD_SDSS)
  166. #endif
  167. ) {
  168. //if (!card.init(SPI_HALF_SPEED,SDSS))
  169. SERIAL_ECHO_START;
  170. SERIAL_ECHOLNPGM(MSG_SD_INIT_FAIL);
  171. }
  172. else if (!volume.init(&card)) {
  173. SERIAL_ERROR_START;
  174. SERIAL_ERRORLNPGM(MSG_SD_VOL_INIT_FAIL);
  175. }
  176. else if (!root.openRoot(&volume)) {
  177. SERIAL_ERROR_START;
  178. SERIAL_ERRORLNPGM(MSG_SD_OPENROOT_FAIL);
  179. }
  180. else {
  181. cardOK = true;
  182. SERIAL_ECHO_START;
  183. SERIAL_ECHOLNPGM(MSG_SD_CARD_OK);
  184. }
  185. workDir = root;
  186. curDir = &root;
  187. /*
  188. if (!workDir.openRoot(&volume)) {
  189. SERIAL_ECHOLNPGM(MSG_SD_WORKDIR_FAIL);
  190. }
  191. */
  192. }
  193. void CardReader::setroot() {
  194. /*if (!workDir.openRoot(&volume)) {
  195. SERIAL_ECHOLNPGM(MSG_SD_WORKDIR_FAIL);
  196. }*/
  197. workDir = root;
  198. curDir = &workDir;
  199. }
  200. void CardReader::release() {
  201. sdprinting = false;
  202. cardOK = false;
  203. }
  204. void CardReader::startFileprint() {
  205. if (cardOK) {
  206. sdprinting = true;
  207. }
  208. }
  209. void CardReader::pauseSDPrint() {
  210. if (sdprinting) sdprinting = false;
  211. }
  212. void CardReader::openLogFile(char* name) {
  213. logging = true;
  214. openFile(name, false);
  215. }
  216. void CardReader::getAbsFilename(char *t) {
  217. uint8_t cnt = 0;
  218. *t = '/'; t++; cnt++;
  219. for (uint8_t i = 0; i < workDirDepth; i++) {
  220. workDirParents[i].getFilename(t); //SDBaseFile.getfilename!
  221. while(*t && cnt < MAXPATHNAMELENGTH) { t++; cnt++; } //crawl counter forward.
  222. }
  223. if (cnt < MAXPATHNAMELENGTH - FILENAME_LENGTH)
  224. file.getFilename(t);
  225. else
  226. t[0] = 0;
  227. }
  228. void CardReader::openFile(char* name, bool read, bool replace_current/*=true*/) {
  229. if (!cardOK) return;
  230. if (file.isOpen()) { //replacing current file by new file, or subfile call
  231. if (!replace_current) {
  232. if (file_subcall_ctr > SD_PROCEDURE_DEPTH - 1) {
  233. SERIAL_ERROR_START;
  234. SERIAL_ERRORPGM("trying to call sub-gcode files with too many levels. MAX level is:");
  235. SERIAL_ERRORLN(SD_PROCEDURE_DEPTH);
  236. kill(PSTR(MSG_KILLED));
  237. return;
  238. }
  239. SERIAL_ECHO_START;
  240. SERIAL_ECHOPGM("SUBROUTINE CALL target:\"");
  241. SERIAL_ECHO(name);
  242. SERIAL_ECHOPGM("\" parent:\"");
  243. //store current filename and position
  244. getAbsFilename(filenames[file_subcall_ctr]);
  245. SERIAL_ECHO(filenames[file_subcall_ctr]);
  246. SERIAL_ECHOPGM("\" pos");
  247. SERIAL_ECHOLN(sdpos);
  248. filespos[file_subcall_ctr] = sdpos;
  249. file_subcall_ctr++;
  250. }
  251. else {
  252. SERIAL_ECHO_START;
  253. SERIAL_ECHOPGM("Now doing file: ");
  254. SERIAL_ECHOLN(name);
  255. }
  256. file.close();
  257. }
  258. else { //opening fresh file
  259. file_subcall_ctr = 0; //resetting procedure depth in case user cancels print while in procedure
  260. SERIAL_ECHO_START;
  261. SERIAL_ECHOPGM("Now fresh file: ");
  262. SERIAL_ECHOLN(name);
  263. }
  264. sdprinting = false;
  265. SdFile myDir;
  266. curDir = &root;
  267. char *fname = name;
  268. char *dirname_start, *dirname_end;
  269. if (name[0] == '/') {
  270. dirname_start = &name[1];
  271. while (dirname_start > 0) {
  272. dirname_end = strchr(dirname_start, '/');
  273. //SERIAL_ECHO("start:");SERIAL_ECHOLN((int)(dirname_start - name));
  274. //SERIAL_ECHO("end :");SERIAL_ECHOLN((int)(dirname_end - name));
  275. if (dirname_end > 0 && dirname_end > dirname_start) {
  276. char subdirname[FILENAME_LENGTH];
  277. strncpy(subdirname, dirname_start, dirname_end - dirname_start);
  278. subdirname[dirname_end - dirname_start] = 0;
  279. SERIAL_ECHOLN(subdirname);
  280. if (!myDir.open(curDir, subdirname, O_READ)) {
  281. SERIAL_PROTOCOLPGM(MSG_SD_OPEN_FILE_FAIL);
  282. SERIAL_PROTOCOL(subdirname);
  283. SERIAL_PROTOCOLCHAR('.');
  284. return;
  285. }
  286. else {
  287. //SERIAL_ECHOLN("dive ok");
  288. }
  289. curDir = &myDir;
  290. dirname_start = dirname_end + 1;
  291. }
  292. else { // the remainder after all /fsa/fdsa/ is the filename
  293. fname = dirname_start;
  294. //SERIAL_ECHOLN("remainder");
  295. //SERIAL_ECHOLN(fname);
  296. break;
  297. }
  298. }
  299. }
  300. else { //relative path
  301. curDir = &workDir;
  302. }
  303. if (read) {
  304. if (file.open(curDir, fname, O_READ)) {
  305. filesize = file.fileSize();
  306. SERIAL_PROTOCOLPGM(MSG_SD_FILE_OPENED);
  307. SERIAL_PROTOCOL(fname);
  308. SERIAL_PROTOCOLPGM(MSG_SD_SIZE);
  309. SERIAL_PROTOCOLLN(filesize);
  310. sdpos = 0;
  311. SERIAL_PROTOCOLLNPGM(MSG_SD_FILE_SELECTED);
  312. getfilename(0, fname);
  313. lcd_setstatus(longFilename[0] ? longFilename : fname);
  314. }
  315. else {
  316. SERIAL_PROTOCOLPGM(MSG_SD_OPEN_FILE_FAIL);
  317. SERIAL_PROTOCOL(fname);
  318. SERIAL_PROTOCOLPGM(".\n");
  319. }
  320. }
  321. else { //write
  322. if (!file.open(curDir, fname, O_CREAT | O_APPEND | O_WRITE | O_TRUNC)) {
  323. SERIAL_PROTOCOLPGM(MSG_SD_OPEN_FILE_FAIL);
  324. SERIAL_PROTOCOL(fname);
  325. SERIAL_PROTOCOLPGM(".\n");
  326. }
  327. else {
  328. saving = true;
  329. SERIAL_PROTOCOLPGM(MSG_SD_WRITE_TO_FILE);
  330. SERIAL_PROTOCOLLN(name);
  331. lcd_setstatus(fname);
  332. }
  333. }
  334. }
  335. void CardReader::removeFile(char* name) {
  336. if (!cardOK) return;
  337. file.close();
  338. sdprinting = false;
  339. SdFile myDir;
  340. curDir = &root;
  341. char *fname = name;
  342. char *dirname_start, *dirname_end;
  343. if (name[0] == '/') {
  344. dirname_start = strchr(name, '/') + 1;
  345. while (dirname_start > 0) {
  346. dirname_end = strchr(dirname_start, '/');
  347. //SERIAL_ECHO("start:");SERIAL_ECHOLN((int)(dirname_start - name));
  348. //SERIAL_ECHO("end :");SERIAL_ECHOLN((int)(dirname_end - name));
  349. if (dirname_end > 0 && dirname_end > dirname_start) {
  350. char subdirname[FILENAME_LENGTH];
  351. strncpy(subdirname, dirname_start, dirname_end - dirname_start);
  352. subdirname[dirname_end - dirname_start] = 0;
  353. SERIAL_ECHOLN(subdirname);
  354. if (!myDir.open(curDir, subdirname, O_READ)) {
  355. SERIAL_PROTOCOLPGM("open failed, File: ");
  356. SERIAL_PROTOCOL(subdirname);
  357. SERIAL_PROTOCOLCHAR('.');
  358. return;
  359. }
  360. else {
  361. //SERIAL_ECHOLN("dive ok");
  362. }
  363. curDir = &myDir;
  364. dirname_start = dirname_end + 1;
  365. }
  366. else { // the remainder after all /fsa/fdsa/ is the filename
  367. fname = dirname_start;
  368. //SERIAL_ECHOLN("remainder");
  369. //SERIAL_ECHOLN(fname);
  370. break;
  371. }
  372. }
  373. }
  374. else { // relative path
  375. curDir = &workDir;
  376. }
  377. if (file.remove(curDir, fname)) {
  378. SERIAL_PROTOCOLPGM("File deleted:");
  379. SERIAL_PROTOCOLLN(fname);
  380. sdpos = 0;
  381. }
  382. else {
  383. SERIAL_PROTOCOLPGM("Deletion failed, File: ");
  384. SERIAL_PROTOCOL(fname);
  385. SERIAL_PROTOCOLCHAR('.');
  386. }
  387. }
  388. void CardReader::getStatus() {
  389. if (cardOK) {
  390. SERIAL_PROTOCOLPGM(MSG_SD_PRINTING_BYTE);
  391. SERIAL_PROTOCOL(sdpos);
  392. SERIAL_PROTOCOLCHAR('/');
  393. SERIAL_PROTOCOLLN(filesize);
  394. }
  395. else {
  396. SERIAL_PROTOCOLLNPGM(MSG_SD_NOT_PRINTING);
  397. }
  398. }
  399. void CardReader::write_command(char *buf) {
  400. char* begin = buf;
  401. char* npos = 0;
  402. char* end = buf + strlen(buf) - 1;
  403. file.writeError = false;
  404. if ((npos = strchr(buf, 'N')) != NULL) {
  405. begin = strchr(npos, ' ') + 1;
  406. end = strchr(npos, '*') - 1;
  407. }
  408. end[1] = '\r';
  409. end[2] = '\n';
  410. end[3] = '\0';
  411. file.write(begin);
  412. if (file.writeError) {
  413. SERIAL_ERROR_START;
  414. SERIAL_ERRORLNPGM(MSG_SD_ERR_WRITE_TO_FILE);
  415. }
  416. }
  417. void CardReader::checkautostart(bool force) {
  418. if (!force && (!autostart_stilltocheck || next_autostart_ms < millis()))
  419. return;
  420. autostart_stilltocheck = false;
  421. if (!cardOK) {
  422. initsd();
  423. if (!cardOK) return; // fail
  424. }
  425. char autoname[10];
  426. sprintf_P(autoname, PSTR("auto%i.g"), autostart_index);
  427. for (int8_t i = 0; i < (int8_t)strlen(autoname); i++) autoname[i] = tolower(autoname[i]);
  428. dir_t p;
  429. root.rewind();
  430. bool found = false;
  431. while (root.readDir(p, NULL) > 0) {
  432. for (int8_t i = 0; i < (int8_t)strlen((char*)p.name); i++) p.name[i] = tolower(p.name[i]);
  433. if (p.name[9] != '~' && strncmp((char*)p.name, autoname, 5) == 0) {
  434. char cmd[4 + (FILENAME_LENGTH + 1) * MAX_DIR_DEPTH + 2];
  435. sprintf_P(cmd, PSTR("M23 %s"), autoname);
  436. enqueuecommand(cmd);
  437. enqueuecommands_P(PSTR("M24"));
  438. found = true;
  439. }
  440. }
  441. if (!found)
  442. autostart_index = -1;
  443. else
  444. autostart_index++;
  445. }
  446. void CardReader::closefile(bool store_location) {
  447. file.sync();
  448. file.close();
  449. saving = logging = false;
  450. if (store_location) {
  451. //future: store printer state, filename and position for continuing a stopped print
  452. // so one can unplug the printer and continue printing the next day.
  453. }
  454. }
  455. /**
  456. * Get the name of a file in the current directory by index
  457. */
  458. void CardReader::getfilename(uint16_t nr, const char * const match/*=NULL*/) {
  459. curDir = &workDir;
  460. lsAction = LS_GetFilename;
  461. nrFiles = nr;
  462. curDir->rewind();
  463. lsDive("", *curDir, match);
  464. }
  465. uint16_t CardReader::getnrfilenames() {
  466. curDir = &workDir;
  467. lsAction = LS_Count;
  468. nrFiles = 0;
  469. curDir->rewind();
  470. lsDive("", *curDir);
  471. //SERIAL_ECHOLN(nrFiles);
  472. return nrFiles;
  473. }
  474. void CardReader::chdir(const char * relpath) {
  475. SdFile newfile;
  476. SdFile *parent = &root;
  477. if (workDir.isOpen()) parent = &workDir;
  478. if (!newfile.open(*parent, relpath, O_READ)) {
  479. SERIAL_ECHO_START;
  480. SERIAL_ECHOPGM(MSG_SD_CANT_ENTER_SUBDIR);
  481. SERIAL_ECHOLN(relpath);
  482. }
  483. else {
  484. if (workDirDepth < MAX_DIR_DEPTH) {
  485. ++workDirDepth;
  486. for (int d = workDirDepth; d--;) workDirParents[d + 1] = workDirParents[d];
  487. workDirParents[0] = *parent;
  488. }
  489. workDir = newfile;
  490. }
  491. }
  492. void CardReader::updir() {
  493. if (workDirDepth > 0) {
  494. --workDirDepth;
  495. workDir = workDirParents[0];
  496. for (uint16_t d = 0; d < workDirDepth; d++)
  497. workDirParents[d] = workDirParents[d+1];
  498. }
  499. }
  500. void CardReader::printingHasFinished() {
  501. st_synchronize();
  502. if (file_subcall_ctr > 0) { // Heading up to a parent file that called current as a procedure.
  503. file.close();
  504. file_subcall_ctr--;
  505. openFile(filenames[file_subcall_ctr], true, true);
  506. setIndex(filespos[file_subcall_ctr]);
  507. startFileprint();
  508. }
  509. else {
  510. file.close();
  511. sdprinting = false;
  512. if (SD_FINISHED_STEPPERRELEASE) {
  513. //finishAndDisableSteppers();
  514. enqueuecommands_P(PSTR(SD_FINISHED_RELEASECOMMAND));
  515. }
  516. autotempShutdown();
  517. }
  518. }
  519. #endif //SDSUPPORT