Merge pull request #8196 from thinkyhead/bf1_asterisk_not_special
[1.1.x] Allow asterisks in G-Code commands
This commit is contained in:
commit
1b68ee82ce
@ -1140,16 +1140,15 @@ inline void get_serial_commands() {
|
|||||||
|
|
||||||
serial_comment_mode = false; // end of line == end of comment
|
serial_comment_mode = false; // end of line == end of comment
|
||||||
|
|
||||||
if (!serial_count) continue; // skip empty lines
|
if (!serial_count) continue; // Skip empty lines
|
||||||
|
|
||||||
serial_line_buffer[serial_count] = 0; // terminate string
|
serial_line_buffer[serial_count] = 0; // Terminate string
|
||||||
serial_count = 0; //reset buffer
|
serial_count = 0; // Reset buffer
|
||||||
|
|
||||||
char* command = serial_line_buffer;
|
char* command = serial_line_buffer;
|
||||||
|
|
||||||
while (*command == ' ') command++; // skip any leading spaces
|
while (*command == ' ') command++; // Skip leading spaces
|
||||||
char *npos = (*command == 'N') ? command : NULL, // Require the N parameter to start the line
|
char *npos = (*command == 'N') ? command : NULL; // Require the N parameter to start the line
|
||||||
*apos = strchr(command, '*');
|
|
||||||
|
|
||||||
if (npos) {
|
if (npos) {
|
||||||
|
|
||||||
@ -1167,15 +1166,14 @@ inline void get_serial_commands() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
char *apos = strrchr(command, '*');
|
||||||
if (apos) {
|
if (apos) {
|
||||||
byte checksum = 0, count = 0;
|
uint8_t checksum = 0, count = uint8_t(apos - command);
|
||||||
while (command[count] != '*') checksum ^= command[count++];
|
while (count) checksum ^= command[--count];
|
||||||
|
|
||||||
if (strtol(apos + 1, NULL, 10) != checksum) {
|
if (strtol(apos + 1, NULL, 10) != checksum) {
|
||||||
gcode_line_error(PSTR(MSG_ERR_CHECKSUM_MISMATCH));
|
gcode_line_error(PSTR(MSG_ERR_CHECKSUM_MISMATCH));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// if no errors, continue parsing
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
gcode_line_error(PSTR(MSG_ERR_NO_CHECKSUM));
|
gcode_line_error(PSTR(MSG_ERR_NO_CHECKSUM));
|
||||||
@ -1183,11 +1181,6 @@ inline void get_serial_commands() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
gcode_LastN = gcode_N;
|
gcode_LastN = gcode_N;
|
||||||
// if no errors, continue parsing
|
|
||||||
}
|
|
||||||
else if (apos) { // No '*' without 'N'
|
|
||||||
gcode_line_error(PSTR(MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM), false);
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Movement commands alert when stopped
|
// Movement commands alert when stopped
|
||||||
|
@ -130,7 +130,6 @@
|
|||||||
#define MSG_ERR_LINE_NO "Line Number is not Last Line Number+1, Last Line: "
|
#define MSG_ERR_LINE_NO "Line Number is not Last Line Number+1, Last Line: "
|
||||||
#define MSG_ERR_CHECKSUM_MISMATCH "checksum mismatch, Last Line: "
|
#define MSG_ERR_CHECKSUM_MISMATCH "checksum mismatch, Last Line: "
|
||||||
#define MSG_ERR_NO_CHECKSUM "No Checksum with line number, Last Line: "
|
#define MSG_ERR_NO_CHECKSUM "No Checksum with line number, Last Line: "
|
||||||
#define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No Line Number with checksum, Last Line: "
|
|
||||||
#define MSG_FILE_PRINTED "Done printing file"
|
#define MSG_FILE_PRINTED "Done printing file"
|
||||||
#define MSG_BEGIN_FILE_LIST "Begin file list"
|
#define MSG_BEGIN_FILE_LIST "Begin file list"
|
||||||
#define MSG_END_FILE_LIST "End file list"
|
#define MSG_END_FILE_LIST "End file list"
|
||||||
|
Loading…
Reference in New Issue
Block a user