cmdqueue.cpp 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675
  1. #include "cmdqueue.h"
  2. #include "cardreader.h"
  3. #include "ultralcd.h"
  4. extern bool Stopped;
  5. // Reserve BUFSIZE lines of length MAX_CMD_SIZE plus CMDBUFFER_RESERVE_FRONT.
  6. char cmdbuffer[BUFSIZE * (MAX_CMD_SIZE + 1) + CMDBUFFER_RESERVE_FRONT];
  7. // Head of the circular buffer, where to read.
  8. int bufindr = 0;
  9. // Tail of the buffer, where to write.
  10. int bufindw = 0;
  11. // Number of lines in cmdbuffer.
  12. int buflen = 0;
  13. // Flag for processing the current command inside the main Arduino loop().
  14. // If a new command was pushed to the front of a command buffer while
  15. // processing another command, this replaces the command on the top.
  16. // Therefore don't remove the command from the queue in the loop() function.
  17. bool cmdbuffer_front_already_processed = false;
  18. int serial_count = 0; //index of character read from serial line
  19. boolean comment_mode = false;
  20. char *strchr_pointer; // just a pointer to find chars in the command string like X, Y, Z, E, etc
  21. unsigned long TimeSent = millis();
  22. unsigned long TimeNow = millis();
  23. long gcode_N = 0;
  24. long gcode_LastN = 0;
  25. long Stopped_gcode_LastN = 0;
  26. uint32_t sdpos_atomic = 0;
  27. // Pop the currently processed command from the queue.
  28. // It is expected, that there is at least one command in the queue.
  29. bool cmdqueue_pop_front()
  30. {
  31. if (buflen > 0) {
  32. #ifdef CMDBUFFER_DEBUG
  33. SERIAL_ECHOPGM("Dequeing ");
  34. SERIAL_ECHO(cmdbuffer+bufindr+CMDHDRSIZE);
  35. SERIAL_ECHOLNPGM("");
  36. SERIAL_ECHOPGM("Old indices: buflen ");
  37. SERIAL_ECHO(buflen);
  38. SERIAL_ECHOPGM(", bufindr ");
  39. SERIAL_ECHO(bufindr);
  40. SERIAL_ECHOPGM(", bufindw ");
  41. SERIAL_ECHO(bufindw);
  42. SERIAL_ECHOPGM(", serial_count ");
  43. SERIAL_ECHO(serial_count);
  44. SERIAL_ECHOPGM(", bufsize ");
  45. SERIAL_ECHO(sizeof(cmdbuffer));
  46. SERIAL_ECHOLNPGM("");
  47. #endif /* CMDBUFFER_DEBUG */
  48. if (-- buflen == 0) {
  49. // Empty buffer.
  50. if (serial_count == 0)
  51. // No serial communication is pending. Reset both pointers to zero.
  52. bufindw = 0;
  53. bufindr = bufindw;
  54. } else {
  55. // There is at least one ready line in the buffer.
  56. // First skip the current command ID and iterate up to the end of the string.
  57. for (bufindr += CMDHDRSIZE; cmdbuffer[bufindr] != 0; ++ bufindr) ;
  58. // Second, skip the end of string null character and iterate until a nonzero command ID is found.
  59. for (++ bufindr; bufindr < sizeof(cmdbuffer) && cmdbuffer[bufindr] == 0; ++ bufindr) ;
  60. // If the end of the buffer was empty,
  61. if (bufindr == sizeof(cmdbuffer)) {
  62. // skip to the start and find the nonzero command.
  63. for (bufindr = 0; cmdbuffer[bufindr] == 0; ++ bufindr) ;
  64. }
  65. #ifdef CMDBUFFER_DEBUG
  66. SERIAL_ECHOPGM("New indices: buflen ");
  67. SERIAL_ECHO(buflen);
  68. SERIAL_ECHOPGM(", bufindr ");
  69. SERIAL_ECHO(bufindr);
  70. SERIAL_ECHOPGM(", bufindw ");
  71. SERIAL_ECHO(bufindw);
  72. SERIAL_ECHOPGM(", serial_count ");
  73. SERIAL_ECHO(serial_count);
  74. SERIAL_ECHOPGM(" new command on the top: ");
  75. SERIAL_ECHO(cmdbuffer+bufindr+CMDHDRSIZE);
  76. SERIAL_ECHOLNPGM("");
  77. #endif /* CMDBUFFER_DEBUG */
  78. }
  79. return true;
  80. }
  81. return false;
  82. }
  83. void cmdqueue_reset()
  84. {
  85. bufindr = 0;
  86. bufindw = 0;
  87. buflen = 0;
  88. cmdbuffer_front_already_processed = false;
  89. }
  90. // How long a string could be pushed to the front of the command queue?
  91. // If yes, adjust bufindr to the new position, where the new command could be enqued.
  92. // len_asked does not contain the zero terminator size.
  93. bool cmdqueue_could_enqueue_front(int len_asked)
  94. {
  95. // MAX_CMD_SIZE has to accommodate the zero terminator.
  96. if (len_asked >= MAX_CMD_SIZE)
  97. return false;
  98. // Remove the currently processed command from the queue.
  99. if (! cmdbuffer_front_already_processed) {
  100. cmdqueue_pop_front();
  101. cmdbuffer_front_already_processed = true;
  102. }
  103. if (bufindr == bufindw && buflen > 0)
  104. // Full buffer.
  105. return false;
  106. // Adjust the end of the write buffer based on whether a partial line is in the receive buffer.
  107. int endw = (serial_count > 0) ? (bufindw + MAX_CMD_SIZE + 1) : bufindw;
  108. if (bufindw < bufindr) {
  109. int bufindr_new = bufindr - len_asked - (1 + CMDHDRSIZE);
  110. // Simple case. There is a contiguous space between the write buffer and the read buffer.
  111. if (endw <= bufindr_new) {
  112. bufindr = bufindr_new;
  113. return true;
  114. }
  115. } else {
  116. // Otherwise the free space is split between the start and end.
  117. if (len_asked + (1 + CMDHDRSIZE) <= bufindr) {
  118. // Could fit at the start.
  119. bufindr -= len_asked + (1 + CMDHDRSIZE);
  120. return true;
  121. }
  122. int bufindr_new = sizeof(cmdbuffer) - len_asked - (1 + CMDHDRSIZE);
  123. if (endw <= bufindr_new) {
  124. memset(cmdbuffer, 0, bufindr);
  125. bufindr = bufindr_new;
  126. return true;
  127. }
  128. }
  129. return false;
  130. }
  131. // Could one enqueue a command of length len_asked into the buffer,
  132. // while leaving CMDBUFFER_RESERVE_FRONT at the start?
  133. // If yes, adjust bufindw to the new position, where the new command could be enqued.
  134. // len_asked does not contain the zero terminator size.
  135. // This function may update bufindw, therefore for the power panic to work, this function must be called
  136. // with the interrupts disabled!
  137. bool cmdqueue_could_enqueue_back(int len_asked, bool atomic_update)
  138. {
  139. // MAX_CMD_SIZE has to accommodate the zero terminator.
  140. if (len_asked >= MAX_CMD_SIZE)
  141. return false;
  142. if (bufindr == bufindw && buflen > 0)
  143. // Full buffer.
  144. return false;
  145. if (serial_count > 0) {
  146. // If there is some data stored starting at bufindw, len_asked is certainly smaller than
  147. // the allocated data buffer. Try to reserve a new buffer and to move the already received
  148. // serial data.
  149. // How much memory to reserve for the commands pushed to the front?
  150. // End of the queue, when pushing to the end.
  151. int endw = bufindw + len_asked + (1 + CMDHDRSIZE);
  152. if (bufindw < bufindr)
  153. // Simple case. There is a contiguous space between the write buffer and the read buffer.
  154. return endw + CMDBUFFER_RESERVE_FRONT <= bufindr;
  155. // Otherwise the free space is split between the start and end.
  156. if (// Could one fit to the end, including the reserve?
  157. endw + CMDBUFFER_RESERVE_FRONT <= sizeof(cmdbuffer) ||
  158. // Could one fit to the end, and the reserve to the start?
  159. (endw <= sizeof(cmdbuffer) && CMDBUFFER_RESERVE_FRONT <= bufindr))
  160. return true;
  161. // Could one fit both to the start?
  162. if (len_asked + (1 + CMDHDRSIZE) + CMDBUFFER_RESERVE_FRONT <= bufindr) {
  163. // Mark the rest of the buffer as used.
  164. memset(cmdbuffer+bufindw, 0, sizeof(cmdbuffer)-bufindw);
  165. // and point to the start.
  166. // Be careful! The bufindw needs to be changed atomically for the power panic & filament panic to work.
  167. if (atomic_update)
  168. cli();
  169. bufindw = 0;
  170. if (atomic_update)
  171. sei();
  172. return true;
  173. }
  174. } else {
  175. // How much memory to reserve for the commands pushed to the front?
  176. // End of the queue, when pushing to the end.
  177. int endw = bufindw + len_asked + (1 + CMDHDRSIZE);
  178. if (bufindw < bufindr)
  179. // Simple case. There is a contiguous space between the write buffer and the read buffer.
  180. return endw + CMDBUFFER_RESERVE_FRONT <= bufindr;
  181. // Otherwise the free space is split between the start and end.
  182. if (// Could one fit to the end, including the reserve?
  183. endw + CMDBUFFER_RESERVE_FRONT <= sizeof(cmdbuffer) ||
  184. // Could one fit to the end, and the reserve to the start?
  185. (endw <= sizeof(cmdbuffer) && CMDBUFFER_RESERVE_FRONT <= bufindr))
  186. return true;
  187. // Could one fit both to the start?
  188. if (len_asked + (1 + CMDHDRSIZE) + CMDBUFFER_RESERVE_FRONT <= bufindr) {
  189. // Mark the rest of the buffer as used.
  190. memset(cmdbuffer+bufindw, 0, sizeof(cmdbuffer)-bufindw);
  191. // and point to the start.
  192. // Be careful! The bufindw needs to be changed atomically for the power panic & filament panic to work.
  193. if (atomic_update)
  194. cli();
  195. bufindw = 0;
  196. if (atomic_update)
  197. sei();
  198. return true;
  199. }
  200. }
  201. return false;
  202. }
  203. #ifdef CMDBUFFER_DEBUG
  204. void cmdqueue_dump_to_serial_single_line(int nr, const char *p)
  205. {
  206. SERIAL_ECHOPGM("Entry nr: ");
  207. SERIAL_ECHO(nr);
  208. SERIAL_ECHOPGM(", type: ");
  209. SERIAL_ECHO(int(*p));
  210. SERIAL_ECHOPGM(", cmd: ");
  211. SERIAL_ECHO(p+1);
  212. SERIAL_ECHOLNPGM("");
  213. }
  214. void cmdqueue_dump_to_serial()
  215. {
  216. if (buflen == 0) {
  217. SERIAL_ECHOLNPGM("The command buffer is empty.");
  218. } else {
  219. SERIAL_ECHOPGM("Content of the buffer: entries ");
  220. SERIAL_ECHO(buflen);
  221. SERIAL_ECHOPGM(", indr ");
  222. SERIAL_ECHO(bufindr);
  223. SERIAL_ECHOPGM(", indw ");
  224. SERIAL_ECHO(bufindw);
  225. SERIAL_ECHOLNPGM("");
  226. int nr = 0;
  227. if (bufindr < bufindw) {
  228. for (const char *p = cmdbuffer + bufindr; p < cmdbuffer + bufindw; ++ nr) {
  229. cmdqueue_dump_to_serial_single_line(nr, p);
  230. // Skip the command.
  231. for (++p; *p != 0; ++ p);
  232. // Skip the gaps.
  233. for (++p; p < cmdbuffer + bufindw && *p == 0; ++ p);
  234. }
  235. } else {
  236. for (const char *p = cmdbuffer + bufindr; p < cmdbuffer + sizeof(cmdbuffer); ++ nr) {
  237. cmdqueue_dump_to_serial_single_line(nr, p);
  238. // Skip the command.
  239. for (++p; *p != 0; ++ p);
  240. // Skip the gaps.
  241. for (++p; p < cmdbuffer + sizeof(cmdbuffer) && *p == 0; ++ p);
  242. }
  243. for (const char *p = cmdbuffer; p < cmdbuffer + bufindw; ++ nr) {
  244. cmdqueue_dump_to_serial_single_line(nr, p);
  245. // Skip the command.
  246. for (++p; *p != 0; ++ p);
  247. // Skip the gaps.
  248. for (++p; p < cmdbuffer + bufindw && *p == 0; ++ p);
  249. }
  250. }
  251. SERIAL_ECHOLNPGM("End of the buffer.");
  252. }
  253. }
  254. #endif /* CMDBUFFER_DEBUG */
  255. //adds an command to the main command buffer
  256. //thats really done in a non-safe way.
  257. //needs overworking someday
  258. // Currently the maximum length of a command piped through this function is around 20 characters
  259. void enquecommand(const char *cmd, bool from_progmem)
  260. {
  261. int len = from_progmem ? strlen_P(cmd) : strlen(cmd);
  262. // Does cmd fit the queue while leaving sufficient space at the front for the chained commands?
  263. // If it fits, it may move bufindw, so it points to a contiguous buffer, which fits cmd.
  264. if (cmdqueue_could_enqueue_back(len)) {
  265. // This is dangerous if a mixing of serial and this happens
  266. // This may easily be tested: If serial_count > 0, we have a problem.
  267. cmdbuffer[bufindw] = CMDBUFFER_CURRENT_TYPE_UI;
  268. if (from_progmem)
  269. strcpy_P(cmdbuffer + bufindw + CMDHDRSIZE, cmd);
  270. else
  271. strcpy(cmdbuffer + bufindw + CMDHDRSIZE, cmd);
  272. SERIAL_ECHO_START;
  273. SERIAL_ECHORPGM(MSG_Enqueing);
  274. SERIAL_ECHO(cmdbuffer + bufindw + CMDHDRSIZE);
  275. SERIAL_ECHOLNPGM("\"");
  276. bufindw += len + (CMDHDRSIZE + 1);
  277. if (bufindw == sizeof(cmdbuffer))
  278. bufindw = 0;
  279. ++ buflen;
  280. #ifdef CMDBUFFER_DEBUG
  281. cmdqueue_dump_to_serial();
  282. #endif /* CMDBUFFER_DEBUG */
  283. } else {
  284. SERIAL_ERROR_START;
  285. SERIAL_ECHORPGM(MSG_Enqueing);
  286. if (from_progmem)
  287. SERIAL_PROTOCOLRPGM(cmd);
  288. else
  289. SERIAL_ECHO(cmd);
  290. SERIAL_ECHOLNPGM("\" failed: Buffer full!");
  291. #ifdef CMDBUFFER_DEBUG
  292. cmdqueue_dump_to_serial();
  293. #endif /* CMDBUFFER_DEBUG */
  294. }
  295. }
  296. void enquecommand_front(const char *cmd, bool from_progmem)
  297. {
  298. int len = from_progmem ? strlen_P(cmd) : strlen(cmd);
  299. // Does cmd fit the queue? This call shall move bufindr, so the command may be copied.
  300. if (cmdqueue_could_enqueue_front(len)) {
  301. cmdbuffer[bufindr] = CMDBUFFER_CURRENT_TYPE_UI;
  302. if (from_progmem)
  303. strcpy_P(cmdbuffer + bufindr + CMDHDRSIZE, cmd);
  304. else
  305. strcpy(cmdbuffer + bufindr + CMDHDRSIZE, cmd);
  306. ++ buflen;
  307. SERIAL_ECHO_START;
  308. SERIAL_ECHOPGM("Enqueing to the front: \"");
  309. SERIAL_ECHO(cmdbuffer + bufindr + CMDHDRSIZE);
  310. SERIAL_ECHOLNPGM("\"");
  311. #ifdef CMDBUFFER_DEBUG
  312. cmdqueue_dump_to_serial();
  313. #endif /* CMDBUFFER_DEBUG */
  314. } else {
  315. SERIAL_ERROR_START;
  316. SERIAL_ECHOPGM("Enqueing to the front: \"");
  317. if (from_progmem)
  318. SERIAL_PROTOCOLRPGM(cmd);
  319. else
  320. SERIAL_ECHO(cmd);
  321. SERIAL_ECHOLNPGM("\" failed: Buffer full!");
  322. #ifdef CMDBUFFER_DEBUG
  323. cmdqueue_dump_to_serial();
  324. #endif /* CMDBUFFER_DEBUG */
  325. }
  326. }
  327. // Mark the command at the top of the command queue as new.
  328. // Therefore it will not be removed from the queue.
  329. void repeatcommand_front()
  330. {
  331. cmdbuffer_front_already_processed = true;
  332. }
  333. bool is_buffer_empty()
  334. {
  335. if (buflen == 0) return true;
  336. else return false;
  337. }
  338. void get_command()
  339. {
  340. // Test and reserve space for the new command string.
  341. if (! cmdqueue_could_enqueue_back(MAX_CMD_SIZE - 1, true))
  342. return;
  343. bool rx_buffer_full = false; //flag that serial rx buffer is full
  344. while (MYSERIAL.available() > 0) {
  345. if (MYSERIAL.available() == RX_BUFFER_SIZE - 1) { //compare number of chars buffered in rx buffer with rx buffer size
  346. SERIAL_ECHOLNPGM("Full RX Buffer"); //if buffer was full, there is danger that reading of last gcode will not be completed
  347. rx_buffer_full = true; //sets flag that buffer was full
  348. }
  349. char serial_char = MYSERIAL.read();
  350. if (selectedSerialPort == 1)
  351. {
  352. selectedSerialPort = 0;
  353. MYSERIAL.write(serial_char); // for debuging serial line 2 in farm_mode
  354. selectedSerialPort = 1;
  355. }
  356. TimeSent = millis();
  357. TimeNow = millis();
  358. if (serial_char < 0)
  359. // Ignore extended ASCII characters. These characters have no meaning in the G-code apart from the file names
  360. // and Marlin does not support such file names anyway.
  361. // Serial characters with a highest bit set to 1 are generated when the USB cable is unplugged, leading
  362. // to a hang-up of the print process from an SD card.
  363. continue;
  364. if(serial_char == '\n' ||
  365. serial_char == '\r' ||
  366. (serial_char == ':' && comment_mode == false) ||
  367. serial_count >= (MAX_CMD_SIZE - 1) )
  368. {
  369. if(!serial_count) { //if empty line
  370. comment_mode = false; //for new command
  371. return;
  372. }
  373. cmdbuffer[bufindw+serial_count+CMDHDRSIZE] = 0; //terminate string
  374. if(!comment_mode){
  375. comment_mode = false; //for new command
  376. if ((strchr_pointer = strstr(cmdbuffer+bufindw+CMDHDRSIZE, "PRUSA")) == NULL && (strchr_pointer = strchr(cmdbuffer+bufindw+CMDHDRSIZE, 'N')) != NULL) {
  377. if ((strchr_pointer = strchr(cmdbuffer+bufindw+CMDHDRSIZE, 'N')) != NULL)
  378. {
  379. // Line number met. When sending a G-code over a serial line, each line may be stamped with its index,
  380. // and Marlin tests, whether the successive lines are stamped with an increasing line number ID.
  381. gcode_N = (strtol(strchr_pointer+1, NULL, 10));
  382. if(gcode_N != gcode_LastN+1 && (strstr_P(cmdbuffer+bufindw+CMDHDRSIZE, PSTR("M110")) == NULL) ) {
  383. // M110 - set current line number.
  384. // Line numbers not sent in succession.
  385. SERIAL_ERROR_START;
  386. SERIAL_ERRORRPGM(MSG_ERR_LINE_NO);
  387. SERIAL_ERRORLN(gcode_LastN);
  388. //Serial.println(gcode_N);
  389. FlushSerialRequestResend();
  390. serial_count = 0;
  391. return;
  392. }
  393. if((strchr_pointer = strchr(cmdbuffer+bufindw+CMDHDRSIZE, '*')) != NULL)
  394. {
  395. byte checksum = 0;
  396. char *p = cmdbuffer+bufindw+CMDHDRSIZE;
  397. while (p != strchr_pointer)
  398. checksum = checksum^(*p++);
  399. if (int(strtol(strchr_pointer+1, NULL, 10)) != int(checksum)) {
  400. SERIAL_ERROR_START;
  401. SERIAL_ERRORRPGM(MSG_ERR_CHECKSUM_MISMATCH);
  402. SERIAL_ERRORLN(gcode_LastN);
  403. FlushSerialRequestResend();
  404. serial_count = 0;
  405. return;
  406. }
  407. // If no errors, remove the checksum and continue parsing.
  408. *strchr_pointer = 0;
  409. }
  410. else
  411. {
  412. SERIAL_ERROR_START;
  413. SERIAL_ERRORRPGM(MSG_ERR_NO_CHECKSUM);
  414. SERIAL_ERRORLN(gcode_LastN);
  415. FlushSerialRequestResend();
  416. serial_count = 0;
  417. return;
  418. }
  419. gcode_LastN = gcode_N;
  420. //if no errors, continue parsing
  421. } // end of 'N' command
  422. }
  423. else // if we don't receive 'N' but still see '*'
  424. {
  425. if((strchr(cmdbuffer+bufindw+CMDHDRSIZE, '*') != NULL))
  426. {
  427. SERIAL_ERROR_START;
  428. SERIAL_ERRORRPGM(MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM);
  429. SERIAL_ERRORLN(gcode_LastN);
  430. serial_count = 0;
  431. return;
  432. }
  433. } // end of '*' command
  434. if ((strchr_pointer = strchr(cmdbuffer+bufindw+CMDHDRSIZE, 'G')) != NULL) {
  435. if (! IS_SD_PRINTING) {
  436. usb_printing_counter = 10;
  437. is_usb_printing = true;
  438. }
  439. if (Stopped == true) {
  440. int gcode = strtol(strchr_pointer+1, NULL, 10);
  441. if (gcode >= 0 && gcode <= 3) {
  442. SERIAL_ERRORLNRPGM(MSG_ERR_STOPPED);
  443. LCD_MESSAGERPGM(MSG_STOPPED);
  444. }
  445. }
  446. } // end of 'G' command
  447. //If command was e-stop process now
  448. if(strcmp(cmdbuffer+bufindw+CMDHDRSIZE, "M112") == 0)
  449. kill("", 2);
  450. // Store the current line into buffer, move to the next line.
  451. cmdbuffer[bufindw] = CMDBUFFER_CURRENT_TYPE_USB;
  452. #ifdef CMDBUFFER_DEBUG
  453. SERIAL_ECHO_START;
  454. SERIAL_ECHOPGM("Storing a command line to buffer: ");
  455. SERIAL_ECHO(cmdbuffer+bufindw+CMDHDRSIZE);
  456. SERIAL_ECHOLNPGM("");
  457. #endif /* CMDBUFFER_DEBUG */
  458. bufindw += strlen(cmdbuffer+bufindw+CMDHDRSIZE) + (1 + CMDHDRSIZE);
  459. if (bufindw == sizeof(cmdbuffer))
  460. bufindw = 0;
  461. ++ buflen;
  462. #ifdef CMDBUFFER_DEBUG
  463. SERIAL_ECHOPGM("Number of commands in the buffer: ");
  464. SERIAL_ECHO(buflen);
  465. SERIAL_ECHOLNPGM("");
  466. #endif /* CMDBUFFER_DEBUG */
  467. } // end of 'not comment mode'
  468. serial_count = 0; //clear buffer
  469. // Don't call cmdqueue_could_enqueue_back if there are no characters waiting
  470. // in the queue, as this function will reserve the memory.
  471. if (MYSERIAL.available() == 0 || ! cmdqueue_could_enqueue_back(MAX_CMD_SIZE-1, true))
  472. return;
  473. } // end of "end of line" processing
  474. else {
  475. // Not an "end of line" symbol. Store the new character into a buffer.
  476. if(serial_char == ';') comment_mode = true;
  477. if(!comment_mode) cmdbuffer[bufindw+CMDHDRSIZE+serial_count++] = serial_char;
  478. }
  479. } // end of serial line processing loop
  480. if(farm_mode){
  481. TimeNow = millis();
  482. if ( ((TimeNow - TimeSent) > 800) && (serial_count > 0) ) {
  483. cmdbuffer[bufindw+serial_count+CMDHDRSIZE] = 0;
  484. bufindw += strlen(cmdbuffer+bufindw+CMDHDRSIZE) + (1 + CMDHDRSIZE);
  485. if (bufindw == sizeof(cmdbuffer))
  486. bufindw = 0;
  487. ++ buflen;
  488. serial_count = 0;
  489. SERIAL_ECHOPGM("TIMEOUT:");
  490. //memset(cmdbuffer, 0 , sizeof(cmdbuffer));
  491. return;
  492. }
  493. }
  494. //add comment
  495. if (rx_buffer_full == true && serial_count > 0) { //if rx buffer was full and string was not properly terminated
  496. rx_buffer_full = false;
  497. bufindw = bufindw - serial_count; //adjust tail of the buffer to prepare buffer for writing new command
  498. serial_count = 0;
  499. }
  500. #ifdef SDSUPPORT
  501. if(!card.sdprinting || serial_count!=0){
  502. // If there is a half filled buffer from serial line, wait until return before
  503. // continuing with the serial line.
  504. return;
  505. }
  506. //'#' stops reading from SD to the buffer prematurely, so procedural macro calls are possible
  507. // if it occurs, stop_buffering is triggered and the buffer is ran dry.
  508. // this character _can_ occur in serial com, due to checksums. however, no checksums are used in SD printing
  509. static bool stop_buffering=false;
  510. if(buflen==0) stop_buffering=false;
  511. union {
  512. struct {
  513. char lo;
  514. char hi;
  515. } lohi;
  516. uint16_t value;
  517. } sd_count;
  518. sd_count.value = 0;
  519. // Reads whole lines from the SD card. Never leaves a half-filled line in the cmdbuffer.
  520. while( !card.eof() && !stop_buffering) {
  521. int16_t n=card.get();
  522. char serial_char = (char)n;
  523. if(serial_char == '\n' ||
  524. serial_char == '\r' ||
  525. ((serial_char == '#' || serial_char == ':') && comment_mode == false) ||
  526. serial_count >= (MAX_CMD_SIZE - 1) || n==-1)
  527. {
  528. if(card.eof()){
  529. SERIAL_PROTOCOLLNRPGM(MSG_FILE_PRINTED);
  530. stoptime=millis();
  531. char time[30];
  532. unsigned long t=(stoptime-starttime-pause_time)/1000;
  533. pause_time = 0;
  534. int hours, minutes;
  535. minutes=(t/60)%60;
  536. hours=t/60/60;
  537. save_statistics(total_filament_used, t);
  538. sprintf_P(time, PSTR("%i hours %i minutes"),hours, minutes);
  539. SERIAL_ECHO_START;
  540. SERIAL_ECHOLN(time);
  541. lcd_setstatus(time);
  542. card.printingHasFinished();
  543. card.checkautostart(true);
  544. if (farm_mode)
  545. {
  546. prusa_statistics(6);
  547. lcd_commands_type = LCD_COMMAND_FARM_MODE_CONFIRM;
  548. }
  549. }
  550. if(serial_char=='#')
  551. stop_buffering=true;
  552. if(!serial_count)
  553. {
  554. // This is either an empty line, or a line with just a comment.
  555. // Continue to the following line, and continue accumulating the number of bytes
  556. // read from the sdcard into sd_count,
  557. // so that the lenght of the already read empty lines and comments will be added
  558. // to the following non-empty line.
  559. comment_mode = false;
  560. continue; //if empty line
  561. }
  562. // The new command buffer could be updated non-atomically, because it is not yet considered
  563. // to be inside the active queue.
  564. sd_count.value = (card.get_sdpos()+1) - sdpos_atomic;
  565. cmdbuffer[bufindw] = CMDBUFFER_CURRENT_TYPE_SDCARD;
  566. cmdbuffer[bufindw+1] = sd_count.lohi.lo;
  567. cmdbuffer[bufindw+2] = sd_count.lohi.hi;
  568. cmdbuffer[bufindw+serial_count+CMDHDRSIZE] = 0; //terminate string
  569. // Calculate the length before disabling the interrupts.
  570. uint8_t len = strlen(cmdbuffer+bufindw+CMDHDRSIZE) + (1 + CMDHDRSIZE);
  571. // SERIAL_ECHOPGM("SD cmd(");
  572. // MYSERIAL.print(sd_count.value, DEC);
  573. // SERIAL_ECHOPGM(") ");
  574. // SERIAL_ECHOLN(cmdbuffer+bufindw+CMDHDRSIZE);
  575. // SERIAL_ECHOPGM("cmdbuffer:");
  576. // MYSERIAL.print(cmdbuffer);
  577. // SERIAL_ECHOPGM("buflen:");
  578. // MYSERIAL.print(buflen+1);
  579. sd_count.value = 0;
  580. cli();
  581. ++ buflen;
  582. bufindw += len;
  583. sdpos_atomic = card.get_sdpos()+1;
  584. if (bufindw == sizeof(cmdbuffer))
  585. bufindw = 0;
  586. sei();
  587. comment_mode = false; //for new command
  588. serial_count = 0; //clear buffer
  589. // The following line will reserve buffer space if available.
  590. if (! cmdqueue_could_enqueue_back(MAX_CMD_SIZE-1, true))
  591. return;
  592. }
  593. else
  594. {
  595. if(serial_char == ';') comment_mode = true;
  596. else if(!comment_mode) cmdbuffer[bufindw+CMDHDRSIZE+serial_count++] = serial_char;
  597. }
  598. }
  599. #endif //SDSUPPORT
  600. }
  601. uint16_t cmdqueue_calc_sd_length()
  602. {
  603. if (buflen == 0)
  604. return 0;
  605. union {
  606. struct {
  607. char lo;
  608. char hi;
  609. } lohi;
  610. uint16_t value;
  611. } sdlen_single;
  612. uint16_t sdlen = 0;
  613. for (int _buflen = buflen, _bufindr = bufindr;;) {
  614. if (cmdbuffer[_bufindr] == CMDBUFFER_CURRENT_TYPE_SDCARD) {
  615. sdlen_single.lohi.lo = cmdbuffer[_bufindr + 1];
  616. sdlen_single.lohi.hi = cmdbuffer[_bufindr + 2];
  617. sdlen += sdlen_single.value;
  618. }
  619. if (-- _buflen == 0)
  620. break;
  621. // First skip the current command ID and iterate up to the end of the string.
  622. for (_bufindr += CMDHDRSIZE; cmdbuffer[_bufindr] != 0; ++ _bufindr) ;
  623. // Second, skip the end of string null character and iterate until a nonzero command ID is found.
  624. for (++ _bufindr; _bufindr < sizeof(cmdbuffer) && cmdbuffer[_bufindr] == 0; ++ _bufindr) ;
  625. // If the end of the buffer was empty,
  626. if (_bufindr == sizeof(cmdbuffer)) {
  627. // skip to the start and find the nonzero command.
  628. for (_bufindr = 0; cmdbuffer[_bufindr] == 0; ++ _bufindr) ;
  629. }
  630. }
  631. return sdlen;
  632. }