Reformat leftovers

This commit is contained in:
Imbus 2025-12-28 07:11:16 +01:00
parent 65bf4e4182
commit 7a837c09a1
4 changed files with 9 additions and 9 deletions

View file

@ -200,7 +200,7 @@ uint8_t system_execute_line(char *line) {
}
if (system_check_safety_door_ajar()) {
return (STATUS_CHECK_DOOR);
} // Block if safety door is ajar.
} // Block if safety door is ajar.
sys.state = STATE_HOMING; // Set system state variable
if (line[2] == 0) {
mc_homing_cycle(HOMING_CYCLE_ALL);
@ -279,7 +279,7 @@ uint8_t system_execute_line(char *line) {
} else { // Store startup line [IDLE Only] Prevents motion during ALARM.
if (sys.state != STATE_IDLE) {
return (STATUS_IDLE_ERROR);
} // Store only when idle.
} // Store only when idle.
helper_var = true; // Set helper_var to flag storing method.
// No break. Continues into default: to read remaining command characters.
}