2017-09-08 05:33:16 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 15:00:57 +01:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-09-08 05:33:16 +02:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2017-09-08 05:33:16 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* queue.cpp - The G-code command queue
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "queue.h"
|
2019-06-19 07:00:19 +02:00
|
|
|
GCodeQueue queue;
|
|
|
|
|
2017-09-08 05:33:16 +02:00
|
|
|
#include "gcode.h"
|
|
|
|
|
|
|
|
#include "../lcd/ultralcd.h"
|
|
|
|
#include "../sd/cardreader.h"
|
|
|
|
#include "../module/planner.h"
|
2018-02-09 08:50:14 +01:00
|
|
|
#include "../module/temperature.h"
|
2020-01-03 02:01:38 +01:00
|
|
|
#include "../MarlinCore.h"
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2018-10-11 04:25:43 +02:00
|
|
|
#if ENABLED(PRINTER_EVENT_LEDS)
|
|
|
|
#include "../feature/leds/printer_event_leds.h"
|
2017-09-08 21:47:47 +02:00
|
|
|
#endif
|
|
|
|
|
2019-08-06 03:41:53 +02:00
|
|
|
#if ENABLED(BINARY_FILE_TRANSFER)
|
|
|
|
#include "../feature/binary_protocol.h"
|
|
|
|
#endif
|
|
|
|
|
2019-09-11 01:52:41 +02:00
|
|
|
#if ENABLED(POWER_LOSS_RECOVERY)
|
|
|
|
#include "../feature/power_loss_recovery.h"
|
|
|
|
#endif
|
2019-08-06 03:41:53 +02:00
|
|
|
|
2017-09-08 05:33:16 +02:00
|
|
|
/**
|
|
|
|
* GCode line number handling. Hosts may opt to include line numbers when
|
|
|
|
* sending commands to Marlin, and lines will be checked for sequentiality.
|
|
|
|
* M110 N<int> sets the current line number.
|
|
|
|
*/
|
2019-06-19 07:00:19 +02:00
|
|
|
long gcode_N, GCodeQueue::last_N, GCodeQueue::stopped_N = 0;
|
2017-09-08 05:33:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GCode Command Queue
|
|
|
|
* A simple ring buffer of BUFSIZE command strings.
|
|
|
|
*
|
|
|
|
* Commands are copied into this buffer by the command injectors
|
|
|
|
* (immediate, serial, sd card) and they are processed sequentially by
|
|
|
|
* the main loop. The gcode.process_next_command method parses the next
|
|
|
|
* command and hands off execution to individual handler functions.
|
|
|
|
*/
|
2019-06-19 07:00:19 +02:00
|
|
|
uint8_t GCodeQueue::length = 0, // Count of commands in the queue
|
|
|
|
GCodeQueue::index_r = 0, // Ring buffer read position
|
|
|
|
GCodeQueue::index_w = 0; // Ring buffer write position
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2019-09-02 03:21:11 +02:00
|
|
|
char GCodeQueue::command_buffer[BUFSIZE][MAX_CMD_SIZE];
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2017-11-05 15:49:38 +01:00
|
|
|
/*
|
|
|
|
* The port that the command was received on
|
|
|
|
*/
|
|
|
|
#if NUM_SERIAL > 1
|
2019-06-19 07:00:19 +02:00
|
|
|
int16_t GCodeQueue::port[BUFSIZE];
|
2017-11-05 15:49:38 +01:00
|
|
|
#endif
|
|
|
|
|
2017-09-08 05:33:16 +02:00
|
|
|
/**
|
|
|
|
* Serial command injection
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Number of characters read in the current line of serial input
|
2017-11-05 15:49:38 +01:00
|
|
|
static int serial_count[NUM_SERIAL] = { 0 };
|
2017-09-08 05:33:16 +02:00
|
|
|
|
|
|
|
bool send_ok[BUFSIZE];
|
|
|
|
|
|
|
|
/**
|
2019-05-09 18:45:55 +02:00
|
|
|
* Next Injected Command pointer. nullptr if no commands are being injected.
|
2017-09-08 05:33:16 +02:00
|
|
|
* Used by Marlin internally to ensure that commands initiated from within
|
|
|
|
* are enqueued ahead of any pending serial or sd card commands.
|
|
|
|
*/
|
2019-05-09 18:45:55 +02:00
|
|
|
static PGM_P injected_commands_P = nullptr;
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2019-06-19 07:00:19 +02:00
|
|
|
GCodeQueue::GCodeQueue() {
|
2017-09-08 05:33:16 +02:00
|
|
|
// Send "ok" after commands by default
|
|
|
|
for (uint8_t i = 0; i < COUNT(send_ok); i++) send_ok[i] = true;
|
|
|
|
}
|
|
|
|
|
2019-06-29 07:23:57 +02:00
|
|
|
/**
|
|
|
|
* Check whether there are any commands yet to be executed
|
|
|
|
*/
|
|
|
|
bool GCodeQueue::has_commands_queued() {
|
|
|
|
return queue.length || injected_commands_P;
|
|
|
|
}
|
|
|
|
|
2017-09-08 05:33:16 +02:00
|
|
|
/**
|
|
|
|
* Clear the Marlin command queue
|
|
|
|
*/
|
2019-06-19 07:00:19 +02:00
|
|
|
void GCodeQueue::clear() {
|
|
|
|
index_r = index_w = length = 0;
|
2017-09-08 05:33:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Once a new command is in the ring buffer, call this to commit it
|
|
|
|
*/
|
2019-06-19 07:00:19 +02:00
|
|
|
void GCodeQueue::_commit_command(bool say_ok
|
2017-11-05 15:49:38 +01:00
|
|
|
#if NUM_SERIAL > 1
|
2019-06-19 07:00:19 +02:00
|
|
|
, int16_t p/*=-1*/
|
2017-11-05 15:49:38 +01:00
|
|
|
#endif
|
|
|
|
) {
|
2019-06-19 07:00:19 +02:00
|
|
|
send_ok[index_w] = say_ok;
|
2017-11-05 15:49:38 +01:00
|
|
|
#if NUM_SERIAL > 1
|
2019-06-19 07:00:19 +02:00
|
|
|
port[index_w] = p;
|
2017-11-05 15:49:38 +01:00
|
|
|
#endif
|
2019-09-11 01:52:41 +02:00
|
|
|
#if ENABLED(POWER_LOSS_RECOVERY)
|
|
|
|
recovery.commit_sdpos(index_w);
|
|
|
|
#endif
|
2019-06-19 07:00:19 +02:00
|
|
|
if (++index_w >= BUFSIZE) index_w = 0;
|
|
|
|
length++;
|
2017-09-08 05:33:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copy a command from RAM into the main command buffer.
|
|
|
|
* Return true if the command was successfully added.
|
|
|
|
* Return false for a full buffer, or if the 'command' is a comment.
|
|
|
|
*/
|
2019-06-19 07:00:19 +02:00
|
|
|
bool GCodeQueue::_enqueue(const char* cmd, bool say_ok/*=false*/
|
2017-11-05 15:49:38 +01:00
|
|
|
#if NUM_SERIAL > 1
|
2019-06-19 07:00:19 +02:00
|
|
|
, int16_t pn/*=-1*/
|
2017-11-05 15:49:38 +01:00
|
|
|
#endif
|
|
|
|
) {
|
2019-06-19 07:00:19 +02:00
|
|
|
if (*cmd == ';' || length >= BUFSIZE) return false;
|
2019-09-02 03:21:11 +02:00
|
|
|
strcpy(command_buffer[index_w], cmd);
|
2017-11-05 15:49:38 +01:00
|
|
|
_commit_command(say_ok
|
|
|
|
#if NUM_SERIAL > 1
|
2019-06-19 07:00:19 +02:00
|
|
|
, pn
|
2017-11-05 15:49:38 +01:00
|
|
|
#endif
|
|
|
|
);
|
2017-09-08 05:33:16 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enqueue with Serial Echo
|
2019-06-08 12:23:53 +02:00
|
|
|
* Return true if the command was consumed
|
2017-09-08 05:33:16 +02:00
|
|
|
*/
|
2019-06-19 07:00:19 +02:00
|
|
|
bool GCodeQueue::enqueue_one(const char* cmd) {
|
2018-09-02 17:18:59 +02:00
|
|
|
|
2019-06-19 07:00:19 +02:00
|
|
|
//SERIAL_ECHOPGM("enqueue_one(\"");
|
2018-09-04 06:15:31 +02:00
|
|
|
//SERIAL_ECHO(cmd);
|
2018-09-17 08:06:22 +02:00
|
|
|
//SERIAL_ECHOPGM("\") \n");
|
2018-09-04 06:15:31 +02:00
|
|
|
|
2019-06-08 12:23:53 +02:00
|
|
|
if (*cmd == 0 || *cmd == '\n' || *cmd == '\r') return true;
|
2018-09-02 17:18:59 +02:00
|
|
|
|
2019-06-19 07:00:19 +02:00
|
|
|
if (_enqueue(cmd)) {
|
2020-02-09 06:10:01 +01:00
|
|
|
SERIAL_ECHO_MSG(MSG_ENQUEUEING, cmd, "\"");
|
2017-09-08 05:33:16 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-06-19 07:00:19 +02:00
|
|
|
/**
|
|
|
|
* Process the next "immediate" command.
|
2019-06-29 07:23:57 +02:00
|
|
|
* Return 'true' if any commands were processed,
|
|
|
|
* or remain to process.
|
2019-06-19 07:00:19 +02:00
|
|
|
*/
|
|
|
|
bool GCodeQueue::process_injected_command() {
|
|
|
|
if (injected_commands_P == nullptr) return false;
|
2019-06-08 12:23:53 +02:00
|
|
|
|
2019-06-19 07:00:19 +02:00
|
|
|
char c;
|
|
|
|
size_t i = 0;
|
|
|
|
while ((c = pgm_read_byte(&injected_commands_P[i])) && c != '\n') i++;
|
2019-06-08 12:23:53 +02:00
|
|
|
|
2019-07-14 17:12:48 +02:00
|
|
|
// Extract current command and move pointer to next command
|
|
|
|
char cmd[i + 1];
|
|
|
|
memcpy_P(cmd, injected_commands_P, i);
|
|
|
|
cmd[i] = '\0';
|
|
|
|
injected_commands_P = c ? injected_commands_P + i + 1 : nullptr;
|
|
|
|
|
|
|
|
// Execute command if non-blank
|
|
|
|
if (i) {
|
2019-06-29 07:23:57 +02:00
|
|
|
parser.parse(cmd);
|
|
|
|
gcode.process_parsed_command();
|
|
|
|
}
|
2019-06-19 07:00:19 +02:00
|
|
|
return true;
|
2017-09-08 05:33:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-08 12:23:53 +02:00
|
|
|
* Enqueue one or many commands to run from program memory.
|
2019-06-19 07:00:19 +02:00
|
|
|
* Do not inject a comment or use leading spaces!
|
2017-09-08 05:33:16 +02:00
|
|
|
* Aborts the current queue, if any.
|
2019-06-19 07:00:19 +02:00
|
|
|
* Note: process_injected_command() will be called to drain any commands afterwards
|
2017-09-08 05:33:16 +02:00
|
|
|
*/
|
2019-06-29 07:23:57 +02:00
|
|
|
void GCodeQueue::inject_P(PGM_P const pgcode) { injected_commands_P = pgcode; }
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2019-06-19 07:00:19 +02:00
|
|
|
/**
|
|
|
|
* Enqueue and return only when commands are actually enqueued.
|
|
|
|
* Never call this from a G-code handler!
|
|
|
|
*/
|
2019-06-29 07:23:57 +02:00
|
|
|
void GCodeQueue::enqueue_one_now(const char* cmd) { while (!enqueue_one(cmd)) idle(); }
|
2019-06-19 07:00:19 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Enqueue from program memory and return only when commands are actually enqueued
|
|
|
|
* Never call this from a G-code handler!
|
|
|
|
*/
|
|
|
|
void GCodeQueue::enqueue_now_P(PGM_P const pgcode) {
|
|
|
|
size_t i = 0;
|
|
|
|
PGM_P p = pgcode;
|
|
|
|
for (;;) {
|
|
|
|
char c;
|
2019-06-24 05:21:33 +02:00
|
|
|
while ((c = pgm_read_byte(&p[i])) && c != '\n') i++;
|
2019-06-19 07:00:19 +02:00
|
|
|
char cmd[i + 1];
|
|
|
|
memcpy_P(cmd, p, i);
|
|
|
|
cmd[i] = '\0';
|
|
|
|
enqueue_one_now(cmd);
|
|
|
|
if (!c) break;
|
|
|
|
p += i + 1;
|
2018-01-03 04:00:06 +01:00
|
|
|
}
|
2019-06-19 07:00:19 +02:00
|
|
|
}
|
2018-01-03 04:00:06 +01:00
|
|
|
|
2017-09-08 05:33:16 +02:00
|
|
|
/**
|
|
|
|
* Send an "ok" message to the host, indicating
|
|
|
|
* that a command was successfully processed.
|
|
|
|
*
|
|
|
|
* If ADVANCED_OK is enabled also include:
|
|
|
|
* N<int> Line number of the command, if any
|
|
|
|
* P<int> Planner space remaining
|
|
|
|
* B<int> Block queue space remaining
|
|
|
|
*/
|
2019-06-19 07:00:19 +02:00
|
|
|
void GCodeQueue::ok_to_send() {
|
2017-11-05 15:49:38 +01:00
|
|
|
#if NUM_SERIAL > 1
|
2019-06-22 02:04:30 +02:00
|
|
|
const int16_t pn = port[index_r];
|
|
|
|
if (pn < 0) return;
|
2020-01-27 05:46:26 +01:00
|
|
|
PORT_REDIRECT(pn); // Reply to the serial port that sent the command
|
2017-11-05 15:49:38 +01:00
|
|
|
#endif
|
2019-06-19 07:00:19 +02:00
|
|
|
if (!send_ok[index_r]) return;
|
2019-02-24 05:53:01 +01:00
|
|
|
SERIAL_ECHOPGM(MSG_OK);
|
2017-09-08 05:33:16 +02:00
|
|
|
#if ENABLED(ADVANCED_OK)
|
2019-09-02 03:21:11 +02:00
|
|
|
char* p = command_buffer[index_r];
|
2017-09-08 05:33:16 +02:00
|
|
|
if (*p == 'N') {
|
2019-02-24 05:53:01 +01:00
|
|
|
SERIAL_ECHO(' ');
|
|
|
|
SERIAL_ECHO(*p++);
|
2017-09-08 05:33:16 +02:00
|
|
|
while (NUMERIC_SIGNED(*p))
|
2019-02-24 05:53:01 +01:00
|
|
|
SERIAL_ECHO(*p++);
|
2017-09-08 05:33:16 +02:00
|
|
|
}
|
2020-02-02 00:05:42 +01:00
|
|
|
SERIAL_ECHOPAIR_P(SP_P_STR, int(BLOCK_BUFFER_SIZE - planner.movesplanned() - 1));
|
|
|
|
SERIAL_ECHOPAIR(" B", BUFSIZE - length);
|
2017-09-08 05:33:16 +02:00
|
|
|
#endif
|
2019-02-24 05:53:01 +01:00
|
|
|
SERIAL_EOL();
|
2017-09-08 05:33:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send a "Resend: nnn" message to the host to
|
|
|
|
* indicate that a command needs to be re-sent.
|
|
|
|
*/
|
2019-06-19 07:00:19 +02:00
|
|
|
void GCodeQueue::flush_and_request_resend() {
|
2017-11-05 15:49:38 +01:00
|
|
|
#if NUM_SERIAL > 1
|
2020-01-27 05:46:26 +01:00
|
|
|
const int16_t pn = port[index_r];
|
|
|
|
if (pn < 0) return;
|
|
|
|
PORT_REDIRECT(pn); // Reply to the serial port that sent the command
|
2017-11-05 15:49:38 +01:00
|
|
|
#endif
|
2019-02-24 05:53:01 +01:00
|
|
|
SERIAL_FLUSH();
|
|
|
|
SERIAL_ECHOPGM(MSG_RESEND);
|
2019-06-19 07:00:19 +02:00
|
|
|
SERIAL_ECHOLN(last_N + 1);
|
2018-03-11 13:36:00 +01:00
|
|
|
ok_to_send();
|
2017-11-05 15:49:38 +01:00
|
|
|
}
|
|
|
|
|
2019-02-04 13:03:49 +01:00
|
|
|
inline bool serial_data_available() {
|
2018-10-31 01:44:12 +01:00
|
|
|
return false
|
|
|
|
|| MYSERIAL0.available()
|
2017-11-05 15:49:38 +01:00
|
|
|
#if NUM_SERIAL > 1
|
2018-10-31 01:44:12 +01:00
|
|
|
|| MYSERIAL1.available()
|
2017-11-05 15:49:38 +01:00
|
|
|
#endif
|
2018-10-31 01:44:12 +01:00
|
|
|
;
|
2017-11-05 15:49:38 +01:00
|
|
|
}
|
|
|
|
|
2019-02-04 13:03:49 +01:00
|
|
|
inline int read_serial(const uint8_t index) {
|
2017-11-05 15:49:38 +01:00
|
|
|
switch (index) {
|
|
|
|
case 0: return MYSERIAL0.read();
|
2018-01-15 09:29:23 +01:00
|
|
|
#if NUM_SERIAL > 1
|
2017-11-05 15:49:38 +01:00
|
|
|
case 1: return MYSERIAL1.read();
|
|
|
|
#endif
|
|
|
|
default: return -1;
|
|
|
|
}
|
2017-09-08 05:33:16 +02:00
|
|
|
}
|
|
|
|
|
2020-01-27 05:46:26 +01:00
|
|
|
void GCodeQueue::gcode_line_error(PGM_P const err, const int8_t pn) {
|
|
|
|
PORT_REDIRECT(pn); // Reply to the serial port that sent the command
|
2019-06-19 07:00:19 +02:00
|
|
|
SERIAL_ERROR_START();
|
|
|
|
serialprintPGM(err);
|
|
|
|
SERIAL_ECHOLN(last_N);
|
2020-01-27 05:46:26 +01:00
|
|
|
while (read_serial(pn) != -1); // Clear out the RX buffer
|
2019-06-19 07:00:19 +02:00
|
|
|
flush_and_request_resend();
|
2020-01-27 05:46:26 +01:00
|
|
|
serial_count[pn] = 0;
|
2019-06-19 07:00:19 +02:00
|
|
|
}
|
|
|
|
|
2019-04-16 06:46:36 +02:00
|
|
|
FORCE_INLINE bool is_M29(const char * const cmd) { // matches "M29" & "M29 ", but not "M290", etc
|
|
|
|
const char * const m29 = strstr_P(cmd, PSTR("M29"));
|
|
|
|
return m29 && !NUMERIC(m29[3]);
|
2019-02-04 14:17:40 +01:00
|
|
|
}
|
|
|
|
|
2017-09-08 05:33:16 +02:00
|
|
|
/**
|
|
|
|
* Get all commands waiting on the serial port and queue them.
|
|
|
|
* Exit when the buffer is full or when no more characters are
|
|
|
|
* left on the serial port.
|
|
|
|
*/
|
2019-06-19 07:00:19 +02:00
|
|
|
void GCodeQueue::get_serial_commands() {
|
2017-11-05 15:49:38 +01:00
|
|
|
static char serial_line_buffer[NUM_SERIAL][MAX_CMD_SIZE];
|
2018-10-06 01:19:45 +02:00
|
|
|
static bool serial_comment_mode[NUM_SERIAL] = { false }
|
|
|
|
#if ENABLED(PAREN_COMMENTS)
|
|
|
|
, serial_comment_paren_mode[NUM_SERIAL] = { false }
|
|
|
|
#endif
|
|
|
|
;
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2019-02-28 02:57:48 +01:00
|
|
|
#if ENABLED(BINARY_FILE_TRANSFER)
|
2019-08-06 03:41:53 +02:00
|
|
|
if (card.flag.binary_mode) {
|
2018-10-31 01:44:12 +01:00
|
|
|
/**
|
|
|
|
* For binary stream file transfer, use serial_line_buffer as the working
|
|
|
|
* receive buffer (which limits the packet size to MAX_CMD_SIZE).
|
|
|
|
* The receive buffer also limits the packet size for reliable transmission.
|
|
|
|
*/
|
2019-08-06 03:41:53 +02:00
|
|
|
binaryStream[card.transfer_port_index].receive(serial_line_buffer[card.transfer_port_index]);
|
2018-10-31 01:44:12 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-09-08 05:33:16 +02:00
|
|
|
// If the command buffer is empty for too long,
|
|
|
|
// send "wait" to indicate Marlin is still waiting.
|
2018-02-09 08:52:28 +01:00
|
|
|
#if NO_TIMEOUTS > 0
|
2017-09-08 05:33:16 +02:00
|
|
|
static millis_t last_command_time = 0;
|
|
|
|
const millis_t ms = millis();
|
2019-06-19 07:00:19 +02:00
|
|
|
if (length == 0 && !serial_data_available() && ELAPSED(ms, last_command_time + NO_TIMEOUTS)) {
|
2017-09-08 05:33:16 +02:00
|
|
|
SERIAL_ECHOLNPGM(MSG_WAIT);
|
|
|
|
last_command_time = ms;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loop while serial characters are incoming and the queue is not full
|
|
|
|
*/
|
2019-06-19 07:00:19 +02:00
|
|
|
while (length < BUFSIZE && serial_data_available()) {
|
2017-11-05 15:49:38 +01:00
|
|
|
for (uint8_t i = 0; i < NUM_SERIAL; ++i) {
|
|
|
|
int c;
|
|
|
|
if ((c = read_serial(i)) < 0) continue;
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2017-11-05 15:49:38 +01:00
|
|
|
char serial_char = c;
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2017-11-05 15:49:38 +01:00
|
|
|
/**
|
|
|
|
* If the character ends the line
|
|
|
|
*/
|
|
|
|
if (serial_char == '\n' || serial_char == '\r') {
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2018-10-06 01:19:45 +02:00
|
|
|
// Start with comment mode off
|
|
|
|
serial_comment_mode[i] = false;
|
|
|
|
#if ENABLED(PAREN_COMMENTS)
|
|
|
|
serial_comment_paren_mode[i] = false;
|
2018-10-05 09:35:55 +02:00
|
|
|
#endif
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2018-02-09 08:50:14 +01:00
|
|
|
// Skip empty lines and comments
|
|
|
|
if (!serial_count[i]) { thermalManager.manage_heater(); continue; }
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2017-11-05 15:49:38 +01:00
|
|
|
serial_line_buffer[i][serial_count[i]] = 0; // Terminate string
|
|
|
|
serial_count[i] = 0; // Reset buffer
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2017-11-05 15:49:38 +01:00
|
|
|
char* command = serial_line_buffer[i];
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2017-11-05 15:49:38 +01:00
|
|
|
while (*command == ' ') command++; // Skip leading spaces
|
2019-05-09 18:45:55 +02:00
|
|
|
char *npos = (*command == 'N') ? command : nullptr; // Require the N parameter to start the line
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2017-11-05 15:49:38 +01:00
|
|
|
if (npos) {
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2019-05-09 18:45:55 +02:00
|
|
|
bool M110 = strstr_P(command, PSTR("M110")) != nullptr;
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2017-11-05 15:49:38 +01:00
|
|
|
if (M110) {
|
|
|
|
char* n2pos = strchr(command + 4, 'N');
|
|
|
|
if (n2pos) npos = n2pos;
|
|
|
|
}
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2019-05-09 18:45:55 +02:00
|
|
|
gcode_N = strtol(npos + 1, nullptr, 10);
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2019-06-19 07:00:19 +02:00
|
|
|
if (gcode_N != last_N + 1 && !M110)
|
2018-04-08 04:25:39 +02:00
|
|
|
return gcode_line_error(PSTR(MSG_ERR_LINE_NO), i);
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2017-11-05 15:49:38 +01:00
|
|
|
char *apos = strrchr(command, '*');
|
|
|
|
if (apos) {
|
|
|
|
uint8_t checksum = 0, count = uint8_t(apos - command);
|
|
|
|
while (count) checksum ^= command[--count];
|
2019-05-09 18:45:55 +02:00
|
|
|
if (strtol(apos + 1, nullptr, 10) != checksum)
|
2018-04-08 04:25:39 +02:00
|
|
|
return gcode_line_error(PSTR(MSG_ERR_CHECKSUM_MISMATCH), i);
|
2017-09-08 05:33:16 +02:00
|
|
|
}
|
2018-04-08 04:25:39 +02:00
|
|
|
else
|
|
|
|
return gcode_line_error(PSTR(MSG_ERR_NO_CHECKSUM), i);
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2019-06-19 07:00:19 +02:00
|
|
|
last_N = gcode_N;
|
2017-09-08 05:33:16 +02:00
|
|
|
}
|
2018-03-28 20:45:47 +02:00
|
|
|
#if ENABLED(SDSUPPORT)
|
2019-02-06 11:59:22 +01:00
|
|
|
// Pronterface "M29" and "M29 " has no line number
|
2019-02-04 14:17:40 +01:00
|
|
|
else if (card.flag.saving && !is_M29(command))
|
2018-04-08 04:25:39 +02:00
|
|
|
return gcode_line_error(PSTR(MSG_ERR_NO_CHECKSUM), i);
|
2018-03-28 20:45:47 +02:00
|
|
|
#endif
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2017-11-05 15:49:38 +01:00
|
|
|
// Movement commands alert when stopped
|
|
|
|
if (IsStopped()) {
|
|
|
|
char* gpos = strchr(command, 'G');
|
|
|
|
if (gpos) {
|
2019-05-09 18:45:55 +02:00
|
|
|
switch (strtol(gpos + 1, nullptr, 10)) {
|
2017-11-05 15:49:38 +01:00
|
|
|
case 0:
|
|
|
|
case 1:
|
2018-09-27 22:40:19 +02:00
|
|
|
#if ENABLED(ARC_SUPPORT)
|
|
|
|
case 2:
|
|
|
|
case 3:
|
|
|
|
#endif
|
|
|
|
#if ENABLED(BEZIER_CURVE_SUPPORT)
|
|
|
|
case 5:
|
|
|
|
#endif
|
2018-11-29 23:58:58 +01:00
|
|
|
SERIAL_ECHOLNPGM(MSG_ERR_STOPPED);
|
2017-11-05 15:49:38 +01:00
|
|
|
LCD_MESSAGEPGM(MSG_STOPPED);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2017-11-05 15:49:38 +01:00
|
|
|
#if DISABLED(EMERGENCY_PARSER)
|
2018-02-08 08:31:19 +01:00
|
|
|
// Process critical commands early
|
2017-11-05 15:49:38 +01:00
|
|
|
if (strcmp(command, "M108") == 0) {
|
|
|
|
wait_for_heatup = false;
|
2018-10-30 22:34:45 +01:00
|
|
|
#if HAS_LCD_MENU
|
2017-11-05 15:49:38 +01:00
|
|
|
wait_for_user = false;
|
|
|
|
#endif
|
|
|
|
}
|
2020-01-20 02:00:17 +01:00
|
|
|
if (strcmp(command, "M112") == 0) kill(M112_KILL_STR, nullptr, true);
|
2018-02-08 08:31:19 +01:00
|
|
|
if (strcmp(command, "M410") == 0) quickstop_stepper();
|
2017-11-05 15:49:38 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(NO_TIMEOUTS) && NO_TIMEOUTS > 0
|
|
|
|
last_command_time = ms;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Add the command to the queue
|
2019-06-19 07:00:19 +02:00
|
|
|
_enqueue(serial_line_buffer[i], true
|
2017-11-05 15:49:38 +01:00
|
|
|
#if NUM_SERIAL > 1
|
|
|
|
, i
|
|
|
|
#endif
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else if (serial_count[i] >= MAX_CMD_SIZE - 1) {
|
|
|
|
// Keep fetching, but ignore normal characters beyond the max length
|
|
|
|
// The command will be injected when EOL is reached
|
|
|
|
}
|
|
|
|
else if (serial_char == '\\') { // Handle escapes
|
|
|
|
// if we have one more character, copy it over
|
2018-10-05 09:35:55 +02:00
|
|
|
if ((c = read_serial(i)) >= 0 && !serial_comment_mode[i]
|
2018-10-06 01:19:45 +02:00
|
|
|
#if ENABLED(PAREN_COMMENTS)
|
|
|
|
&& !serial_comment_paren_mode[i]
|
|
|
|
#endif
|
|
|
|
)
|
2018-02-09 11:02:42 +01:00
|
|
|
serial_line_buffer[i][serial_count[i]++] = (char)c;
|
2017-11-05 15:49:38 +01:00
|
|
|
}
|
|
|
|
else { // it's not a newline, carriage return or escape char
|
2018-10-06 01:19:45 +02:00
|
|
|
if (serial_char == ';') serial_comment_mode[i] = true;
|
|
|
|
#if ENABLED(PAREN_COMMENTS)
|
|
|
|
else if (serial_char == '(') serial_comment_paren_mode[i] = true;
|
|
|
|
else if (serial_char == ')') serial_comment_paren_mode[i] = false;
|
2018-10-05 09:35:55 +02:00
|
|
|
#endif
|
2018-10-06 01:19:45 +02:00
|
|
|
else if (!serial_comment_mode[i]
|
|
|
|
#if ENABLED(PAREN_COMMENTS)
|
|
|
|
&& ! serial_comment_paren_mode[i]
|
|
|
|
#endif
|
2018-10-05 09:35:55 +02:00
|
|
|
) serial_line_buffer[i][serial_count[i]++] = serial_char;
|
2017-11-05 15:49:38 +01:00
|
|
|
}
|
|
|
|
} // for NUM_SERIAL
|
2017-09-08 05:33:16 +02:00
|
|
|
} // queue has space, serial has data
|
|
|
|
}
|
|
|
|
|
|
|
|
#if ENABLED(SDSUPPORT)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get commands from the SD Card until the command buffer is full
|
|
|
|
* or until the end of the file is reached. The special character '#'
|
|
|
|
* can also interrupt buffering.
|
|
|
|
*/
|
2019-06-19 07:00:19 +02:00
|
|
|
inline void GCodeQueue::get_sdcard_commands() {
|
2020-02-01 13:49:56 +01:00
|
|
|
static bool sd_comment_mode = false
|
2018-10-06 01:19:45 +02:00
|
|
|
#if ENABLED(PAREN_COMMENTS)
|
|
|
|
, sd_comment_paren_mode = false
|
|
|
|
#endif
|
|
|
|
;
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2018-10-19 20:52:44 +02:00
|
|
|
if (!IS_SD_PRINTING()) return;
|
2017-09-08 05:33:16 +02:00
|
|
|
|
|
|
|
uint16_t sd_count = 0;
|
|
|
|
bool card_eof = card.eof();
|
2020-02-01 13:49:56 +01:00
|
|
|
while (length < BUFSIZE && !card_eof) {
|
2017-09-08 05:33:16 +02:00
|
|
|
const int16_t n = card.get();
|
|
|
|
char sd_char = (char)n;
|
|
|
|
card_eof = card.eof();
|
2020-02-01 13:49:56 +01:00
|
|
|
if (card_eof || n == -1 || sd_char == '\n' || sd_char == '\r') {
|
2017-09-08 05:33:16 +02:00
|
|
|
if (card_eof) {
|
2017-11-15 07:15:57 +01:00
|
|
|
|
2017-09-08 05:33:16 +02:00
|
|
|
card.printingHasFinished();
|
2017-11-15 07:15:57 +01:00
|
|
|
|
2018-11-07 03:52:39 +01:00
|
|
|
if (IS_SD_PRINTING())
|
2017-11-15 07:15:57 +01:00
|
|
|
sd_count = 0; // If a sub-file was printing, continue from call point
|
|
|
|
else {
|
2018-11-29 23:58:58 +01:00
|
|
|
SERIAL_ECHOLNPGM(MSG_FILE_PRINTED);
|
2017-11-15 07:15:57 +01:00
|
|
|
#if ENABLED(PRINTER_EVENT_LEDS)
|
2018-10-11 04:25:43 +02:00
|
|
|
printerEventLEDs.onPrintCompleted();
|
2017-11-15 07:15:57 +01:00
|
|
|
#if HAS_RESUME_CONTINUE
|
2020-02-09 06:10:01 +01:00
|
|
|
inject_P(PSTR("M0 Q S"
|
2018-11-03 08:07:53 +01:00
|
|
|
#if HAS_LCD_MENU
|
2018-03-29 05:59:28 +02:00
|
|
|
"1800"
|
|
|
|
#else
|
|
|
|
"60"
|
|
|
|
#endif
|
|
|
|
));
|
2017-11-15 07:15:57 +01:00
|
|
|
#endif
|
2018-03-29 05:59:28 +02:00
|
|
|
#endif // PRINTER_EVENT_LEDS
|
2017-11-15 07:15:57 +01:00
|
|
|
}
|
2017-09-08 05:33:16 +02:00
|
|
|
}
|
2018-11-29 23:58:58 +01:00
|
|
|
else if (n == -1)
|
|
|
|
SERIAL_ERROR_MSG(MSG_SD_ERR_READ);
|
|
|
|
|
2017-09-08 05:33:16 +02:00
|
|
|
sd_comment_mode = false; // for new command
|
2018-10-06 01:19:45 +02:00
|
|
|
#if ENABLED(PAREN_COMMENTS)
|
|
|
|
sd_comment_paren_mode = false;
|
2018-10-05 09:35:55 +02:00
|
|
|
#endif
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2018-02-09 08:50:14 +01:00
|
|
|
// Skip empty lines and comments
|
|
|
|
if (!sd_count) { thermalManager.manage_heater(); continue; }
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2019-09-02 03:21:11 +02:00
|
|
|
command_buffer[index_w][sd_count] = '\0'; // terminate string
|
2017-09-08 05:33:16 +02:00
|
|
|
sd_count = 0; // clear sd line buffer
|
|
|
|
|
|
|
|
_commit_command(false);
|
2019-09-11 01:52:41 +02:00
|
|
|
|
|
|
|
#if ENABLED(POWER_LOSS_RECOVERY)
|
|
|
|
recovery.cmd_sdpos = card.getIndex(); // Prime for the next _commit_command
|
|
|
|
#endif
|
2017-09-08 05:33:16 +02:00
|
|
|
}
|
|
|
|
else if (sd_count >= MAX_CMD_SIZE - 1) {
|
|
|
|
/**
|
|
|
|
* Keep fetching, but ignore normal characters beyond the max length
|
|
|
|
* The command will be injected when EOL is reached
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
else {
|
2018-10-06 01:19:45 +02:00
|
|
|
if (sd_char == ';') sd_comment_mode = true;
|
|
|
|
#if ENABLED(PAREN_COMMENTS)
|
|
|
|
else if (sd_char == '(') sd_comment_paren_mode = true;
|
|
|
|
else if (sd_char == ')') sd_comment_paren_mode = false;
|
2018-10-05 09:35:55 +02:00
|
|
|
#endif
|
|
|
|
else if (!sd_comment_mode
|
2018-10-06 01:19:45 +02:00
|
|
|
#if ENABLED(PAREN_COMMENTS)
|
|
|
|
&& ! sd_comment_paren_mode
|
|
|
|
#endif
|
2019-09-02 03:21:11 +02:00
|
|
|
) command_buffer[index_w][sd_count++] = sd_char;
|
2017-09-08 05:33:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // SDSUPPORT
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add to the circular command queue the next command from:
|
|
|
|
* - The command-injection queue (injected_commands_P)
|
|
|
|
* - The active serial input (usually USB)
|
|
|
|
* - The SD card file being actively printed
|
|
|
|
*/
|
2019-06-19 07:00:19 +02:00
|
|
|
void GCodeQueue::get_available_commands() {
|
2017-09-08 05:33:16 +02:00
|
|
|
|
|
|
|
get_serial_commands();
|
|
|
|
|
|
|
|
#if ENABLED(SDSUPPORT)
|
|
|
|
get_sdcard_commands();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the next command in the queue, optionally log it to SD, then dispatch it
|
|
|
|
*/
|
2019-06-19 07:00:19 +02:00
|
|
|
void GCodeQueue::advance() {
|
|
|
|
|
|
|
|
// Process immediate commands
|
|
|
|
if (process_injected_command()) return;
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2019-06-19 07:00:19 +02:00
|
|
|
// Return if the G-code buffer is empty
|
|
|
|
if (!length) return;
|
2017-09-08 05:33:16 +02:00
|
|
|
|
|
|
|
#if ENABLED(SDSUPPORT)
|
|
|
|
|
2018-11-17 05:39:16 +01:00
|
|
|
if (card.flag.saving) {
|
2019-09-02 03:21:11 +02:00
|
|
|
char* command = command_buffer[index_r];
|
2019-02-04 14:17:40 +01:00
|
|
|
if (is_M29(command)) {
|
2017-09-08 05:33:16 +02:00
|
|
|
// M29 closes the file
|
|
|
|
card.closefile();
|
2018-11-29 23:58:58 +01:00
|
|
|
SERIAL_ECHOLNPGM(MSG_FILE_SAVED);
|
2017-10-02 09:47:30 +02:00
|
|
|
|
2018-03-11 05:46:32 +01:00
|
|
|
#if !defined(__AVR__) || !defined(USBCON)
|
2018-01-10 01:42:55 +01:00
|
|
|
#if ENABLED(SERIAL_STATS_DROPPED_RX)
|
2018-10-03 07:47:27 +02:00
|
|
|
SERIAL_ECHOLNPAIR("Dropped bytes: ", MYSERIAL0.dropped());
|
2018-01-10 01:42:55 +01:00
|
|
|
#endif
|
2017-10-02 09:47:30 +02:00
|
|
|
|
2018-01-10 01:42:55 +01:00
|
|
|
#if ENABLED(SERIAL_STATS_MAX_RX_QUEUED)
|
2018-10-03 07:47:27 +02:00
|
|
|
SERIAL_ECHOLNPAIR("Max RX Queue Size: ", MYSERIAL0.rxMaxEnqueued());
|
2018-01-10 01:42:55 +01:00
|
|
|
#endif
|
2018-03-11 05:46:32 +01:00
|
|
|
#endif // !defined(__AVR__) || !defined(USBCON)
|
2017-10-02 09:47:30 +02:00
|
|
|
|
2017-09-08 05:33:16 +02:00
|
|
|
ok_to_send();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Write the string from the read buffer to SD
|
|
|
|
card.write_command(command);
|
2018-11-17 05:39:16 +01:00
|
|
|
if (card.flag.logging)
|
2017-09-08 05:33:16 +02:00
|
|
|
gcode.process_next_command(); // The card is saving because it's logging
|
|
|
|
else
|
|
|
|
ok_to_send();
|
|
|
|
}
|
|
|
|
}
|
2019-03-05 08:47:06 +01:00
|
|
|
else
|
2017-09-08 05:33:16 +02:00
|
|
|
gcode.process_next_command();
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
gcode.process_next_command();
|
|
|
|
|
|
|
|
#endif // SDSUPPORT
|
|
|
|
|
|
|
|
// The queue may be reset by a command handler or by code invoked by idle() within a handler
|
2019-06-19 07:00:19 +02:00
|
|
|
if (length) {
|
|
|
|
--length;
|
|
|
|
if (++index_r >= BUFSIZE) index_r = 0;
|
2017-09-08 05:33:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|