Reformat leftovers
This commit is contained in:
parent
65bf4e4182
commit
7a837c09a1
4 changed files with 9 additions and 9 deletions
|
|
@ -208,7 +208,7 @@ uint8_t gc_execute_line(char *line) {
|
|||
word_bit = MODAL_GROUP_G4;
|
||||
if ((mantissa != 10) || (int_value == 90)) {
|
||||
FAIL(STATUS_GCODE_UNSUPPORTED_COMMAND);
|
||||
} // [G90.1 not supported]
|
||||
} // [G90.1 not supported]
|
||||
mantissa = 0; // Set to zero to indicate valid non-integer G command.
|
||||
// Otherwise, arc IJK incremental mode is default. G91.1 does nothing.
|
||||
}
|
||||
|
|
@ -245,7 +245,7 @@ uint8_t gc_execute_line(char *line) {
|
|||
gc_block.modal.tool_length = TOOL_LENGTH_OFFSET_ENABLE_DYNAMIC;
|
||||
} else {
|
||||
FAIL(STATUS_GCODE_UNSUPPORTED_COMMAND);
|
||||
} // [Unsupported G43.x command]
|
||||
} // [Unsupported G43.x command]
|
||||
mantissa = 0; // Set to zero to indicate valid non-integer G command.
|
||||
break;
|
||||
case 54:
|
||||
|
|
@ -654,7 +654,7 @@ uint8_t gc_execute_line(char *line) {
|
|||
}; // [No axis words]
|
||||
if (bit_isfalse(value_words, ((1 << WORD_P) | (1 << WORD_L)))) {
|
||||
FAIL(STATUS_GCODE_VALUE_WORD_MISSING);
|
||||
} // [P/L word missing]
|
||||
} // [P/L word missing]
|
||||
coord_select = trunc(gc_block.values.p); // Convert p value to int.
|
||||
if (coord_select > N_COORDINATE_SYSTEM) {
|
||||
FAIL(STATUS_GCODE_UNSUPPORTED_COORD_SYS);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue