Firmware2/Marlin/src/MarlinCore.cpp

1577 lines
44 KiB
C++
Raw Normal View History

/**
2016-03-24 19:01:20 +01:00
* Marlin 3D Printer Firmware
2020-02-03 15:00:57 +01:00
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
2019-06-28 06:57:50 +02:00
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
*
* 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
2020-07-23 05:20:14 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2016-03-24 19:01:20 +01:00
*
*/
/**
* About Marlin
*
* This firmware is a mashup between Sprinter and grbl.
* - https://github.com/kliment/Sprinter
2018-02-06 09:28:18 +01:00
* - https://github.com/grbl/grbl
2015-04-14 02:17:36 +02:00
*/
#include "MarlinCore.h"
2016-11-19 04:54:38 +01:00
#if ENABLED(MARLIN_DEV_MODE)
#warning "WARNING! Disable MARLIN_DEV_MODE for the final build!"
#endif
2020-04-25 23:32:08 +02:00
#include "HAL/shared/Delay.h"
#include "HAL/shared/esp_wifi.h"
#include "HAL/shared/cpu_exception/exception_hook.h"
2020-04-25 23:32:08 +02:00
#ifdef ARDUINO
#include <pins_arduino.h>
#endif
#include <math.h>
#include "core/utility.h"
#include "module/motion.h"
2017-09-06 13:28:33 +02:00
#include "module/planner.h"
#include "module/endstops.h"
#include "module/temperature.h"
2020-08-08 03:51:40 +02:00
#include "module/settings.h"
2017-09-09 07:18:43 +02:00
#include "module/printcounter.h" // PrintCounter or Stopwatch
#include "module/stepper.h"
2019-09-01 02:44:45 +02:00
#include "module/stepper/indirection.h"
2019-01-24 02:06:54 +01:00
#include "gcode/gcode.h"
2017-09-06 13:28:33 +02:00
#include "gcode/parser.h"
#include "gcode/queue.h"
2016-11-19 04:54:38 +01:00
#include "feature/pause.h"
#include "sd/cardreader.h"
2020-10-17 02:36:25 +02:00
#include "lcd/marlinui.h"
2020-11-15 23:39:58 +01:00
#if HAS_TOUCH_BUTTONS
#include "lcd/touch/touch_buttons.h"
#endif
#if HAS_TFT_LVGL_UI
#include "lcd/extui/mks_ui/tft_lvgl_configuration.h"
#include "lcd/extui/mks_ui/draw_ui.h"
#include "lcd/extui/mks_ui/mks_hardware_test.h"
#include <lvgl.h>
#endif
2020-06-16 08:45:27 +02:00
#if ENABLED(DWIN_CREALITY_LCD)
2020-09-07 04:40:58 +02:00
#include "lcd/dwin/e3v2/dwin.h"
#include "lcd/dwin/e3v2/rotary_encoder.h"
2020-06-16 08:45:27 +02:00
#endif
2020-11-05 23:45:22 +01:00
#if ENABLED(EXTENSIBLE_UI)
#include "lcd/extui/ui_api.h"
#endif
2020-10-20 21:35:29 +02:00
#if HAS_ETHERNET
#include "feature/ethernet.h"
#endif
2020-06-16 08:45:27 +02:00
#if ENABLED(IIC_BL24CXX_EEPROM)
#include "libs/BL24CXX.h"
2020-06-16 08:45:27 +02:00
#endif
2020-05-12 02:22:41 +02:00
#if ENABLED(DIRECT_STEPPING)
#include "feature/direct_stepping.h"
#endif
2019-02-12 22:55:47 +01:00
#if ENABLED(HOST_ACTION_COMMANDS)
#include "feature/host_actions.h"
#endif
#if USE_BEEPER
2017-09-14 22:33:07 +02:00
#include "libs/buzzer.h"
#endif
#if ENABLED(EXTERNAL_CLOSED_LOOP_CONTROLLER)
#include "feature/closedloop.h"
#endif
2020-10-11 21:58:35 +02:00
#if HAS_MOTOR_CURRENT_I2C
2017-09-18 01:45:21 +02:00
#include "feature/digipot/digipot.h"
#endif
2017-09-18 07:06:16 +02:00
#if ENABLED(MIXING_EXTRUDER)
#include "feature/mixing.h"
#endif
#if ENABLED(MAX7219_DEBUG)
2020-03-13 22:29:29 +01:00
#include "feature/max7219.h"
#endif
2017-09-08 21:47:47 +02:00
#if HAS_COLOR_LEDS
#include "feature/leds/leds.h"
#endif
2019-03-17 11:57:25 +01:00
#if ENABLED(BLTOUCH)
#include "feature/bltouch.h"
#endif
#if ENABLED(POLL_JOG)
#include "feature/joystick.h"
#endif
2016-11-19 04:54:38 +01:00
#if HAS_SERVOS
2017-11-19 20:39:46 +01:00
#include "module/servo.h"
2016-11-19 04:54:38 +01:00
#endif
2020-10-11 21:58:35 +02:00
#if ENABLED(HAS_MOTOR_CURRENT_DAC)
2017-09-06 13:28:33 +02:00
#include "feature/dac/stepper_dac.h"
2016-11-19 04:54:38 +01:00
#endif
#if ENABLED(EXPERIMENTAL_I2CBUS)
2017-09-06 13:28:33 +02:00
#include "feature/twibus.h"
2016-11-19 04:54:38 +01:00
#endif
#if ENABLED(I2C_POSITION_ENCODERS)
2020-03-13 22:29:29 +01:00
#include "feature/encoder_i2c.h"
#endif
2020-03-02 19:03:43 +01:00
#if HAS_TRINAMIC_CONFIG && DISABLED(PSU_DEFAULT_OFF)
2017-12-15 22:03:14 +01:00
#include "feature/tmc_util.h"
2017-09-18 01:34:04 +02:00
#endif
2019-06-28 06:06:49 +02:00
#if HAS_CUTTER
#include "feature/spindle_laser.h"
#endif
#if ENABLED(SDSUPPORT)
CardReader card;
#endif
2016-09-29 22:06:01 +02:00
#if ENABLED(G38_PROBE_TARGET)
2019-03-10 23:22:09 +01:00
uint8_t G38_move; // = 0
bool G38_did_trigger; // = false
#endif
2017-09-08 22:35:25 +02:00
#if ENABLED(DELTA)
#include "module/delta.h"
#elif IS_SCARA
#include "module/scara.h"
#endif
#if HAS_LEVELING
#include "feature/bedlevel/bedlevel.h"
2017-03-18 16:15:54 +01:00
#endif
2020-11-27 04:18:40 +01:00
#if ENABLED(GCODE_REPEAT_MARKERS)
#include "feature/repeat.h"
#endif
2018-04-22 02:41:26 +02:00
#if ENABLED(POWER_LOSS_RECOVERY)
2020-03-13 22:29:29 +01:00
#include "feature/powerloss.h"
2018-04-22 02:41:26 +02:00
#endif
2019-10-25 19:26:41 +02:00
#if ENABLED(CANCEL_OBJECTS)
#include "feature/cancel_object.h"
#endif
2019-02-13 03:08:34 +01:00
#if HAS_FILAMENT_SENSOR
#include "feature/runout.h"
#endif
2020-12-27 23:23:18 +01:00
#if EITHER(PROBE_TARE, HAS_Z_SERVO_PROBE)
#include "module/probe.h"
#endif
2020-05-18 07:50:35 +02:00
#if ENABLED(HOTEND_IDLE_TIMEOUT)
#include "feature/hotend_idle.h"
#endif
2017-09-16 12:09:34 +02:00
#if ENABLED(TEMP_STAT_LEDS)
#include "feature/leds/tempstat.h"
#endif
#if ENABLED(CASE_LIGHT_ENABLE)
2017-09-18 01:56:29 +02:00
#include "feature/caselight.h"
#endif
2017-11-05 03:01:41 +01:00
#if HAS_FANMUX
#include "feature/fanmux.h"
#endif
2021-04-16 15:02:31 +02:00
#include "module/tool_change.h"
2017-09-18 08:05:44 +02:00
2017-09-18 08:44:59 +02:00
#if ENABLED(USE_CONTROLLER_FAN)
#include "feature/controllerfan.h"
#endif
2020-11-18 08:27:21 +01:00
#if HAS_PRUSA_MMU2
#include "feature/mmu/mmu2.h"
2019-02-01 02:10:52 +01:00
#endif
#if HAS_L64XX
#include "libs/L64XX/L64XX_Marlin.h"
2019-01-24 02:06:54 +01:00
#endif
#if ENABLED(PASSWORD_FEATURE)
#include "feature/password/password.h"
#endif
2021-02-28 00:35:32 +01:00
#if ENABLED(DGUS_LCD_UI_MKS)
#include "lcd/extui/dgus/DGUSScreenHandler.h"
2021-02-28 00:35:32 +01:00
#endif
#if HAS_DRIVER_SAFE_POWER_PROTECT
#include "feature/stepper_driver_safety.h"
#endif
2020-05-06 06:34:04 +02:00
PGMSTR(M112_KILL_STR, "M112 Shutdown");
2019-11-02 05:51:25 +01:00
2020-03-15 00:47:44 +01:00
MarlinState marlin_state = MF_INITIALIZING;
2015-04-08 09:56:19 +02:00
2016-10-07 05:06:33 +02:00
// For M109 and M190, this flag may be cleared (by M108) to exit the wait loop
2019-03-10 15:13:54 +01:00
bool wait_for_heatup = true;
2015-04-08 09:56:19 +02:00
2016-10-07 05:06:33 +02:00
// For M0/M1, this flag may be cleared (by M108) to exit the wait-for-user loop
#if HAS_RESUME_CONTINUE
bool wait_for_user; // = false;
void wait_for_user_response(millis_t ms/*=0*/, const bool no_sleep/*=false*/) {
2020-11-08 01:28:29 +01:00
UNUSED(no_sleep);
KEEPALIVE_STATE(PAUSED_FOR_USER);
wait_for_user = true;
if (ms) ms += millis(); // expire time
2020-04-02 08:22:48 +02:00
while (wait_for_user && !(ms && ELAPSED(millis(), ms)))
idle(TERN_(ADVANCED_PAUSE_FEATURE, no_sleep));
wait_for_user = false;
}
2016-09-12 03:51:53 +02:00
#endif
2016-09-15 20:22:23 +02:00
/**
2017-09-08 22:35:25 +02:00
* ***************************************************************************
* ******************************** FUNCTIONS ********************************
* ***************************************************************************
2016-09-15 20:22:23 +02:00
*/
2017-09-08 22:35:25 +02:00
/**
* Stepper Reset (RigidBoard, et.al.)
*/
#if HAS_STEPPER_RESET
void disableStepperDrivers() { OUT_WRITE(STEPPER_RESET_PIN, LOW); } // Drive down to keep motor driver chips in reset
void enableStepperDrivers() { SET_INPUT(STEPPER_RESET_PIN); } // Set to input, allowing pullups to pull the pin high
2017-09-08 22:35:25 +02:00
#endif
2016-08-28 02:53:02 +02:00
2017-09-06 13:28:33 +02:00
/**
* Sensitive pin test for M42, M226
*/
2018-10-11 07:58:41 +02:00
#include "pins/sensitive_pins.h"
2020-04-28 15:30:52 +02:00
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wnarrowing"
bool pin_is_protected(const pin_t pin) {
static const pin_t sensitive_pins[] PROGMEM = SENSITIVE_PINS;
2020-03-14 05:18:16 +01:00
LOOP_L_N(i, COUNT(sensitive_pins)) {
pin_t sensitive_pin;
memcpy_P(&sensitive_pin, &sensitive_pins[i], sizeof(pin_t));
if (pin == sensitive_pin) return true;
}
2017-09-06 13:28:33 +02:00
return false;
}
2020-04-28 15:30:52 +02:00
#pragma GCC diagnostic pop
void enable_e_steppers() {
#define _ENA_E(N) ENABLE_AXIS_E##N();
2019-11-10 00:59:04 +01:00
REPEAT(E_STEPPERS, _ENA_E)
}
void enable_all_steppers() {
2020-04-22 23:35:03 +02:00
TERN_(AUTO_POWER_CONTROL, powerManager.power_on());
ENABLE_AXIS_X();
ENABLE_AXIS_Y();
ENABLE_AXIS_Z();
enable_e_steppers();
2020-11-05 23:45:22 +01:00
TERN_(EXTENSIBLE_UI, ExtUI::onSteppersEnabled());
}
2017-03-18 03:12:19 +01:00
void disable_e_steppers() {
#define _DIS_E(N) DISABLE_AXIS_E##N();
2019-11-10 00:59:04 +01:00
REPEAT(E_STEPPERS, _DIS_E)
2015-04-04 00:31:35 +02:00
}
void disable_e_stepper(const uint8_t e) {
#define _CASE_DIS_E(N) case N: DISABLE_AXIS_E##N(); break;
switch (e) {
2019-11-10 00:59:04 +01:00
REPEAT(EXTRUDERS, _CASE_DIS_E)
}
}
2017-03-18 03:12:19 +01:00
void disable_all_steppers() {
DISABLE_AXIS_X();
DISABLE_AXIS_Y();
DISABLE_AXIS_Z();
2017-03-18 03:12:19 +01:00
disable_e_steppers();
2020-11-05 23:45:22 +01:00
TERN_(EXTENSIBLE_UI, ExtUI::onSteppersDisabled());
2017-03-18 03:12:19 +01:00
}
/**
2021-05-08 11:35:35 +02:00
* A Print Job exists when the timer is running or SD is printing
*/
2021-05-08 11:35:35 +02:00
bool printJobOngoing() { return print_job_timer.isRunning() || IS_SD_PRINTING(); }
2019-10-03 01:54:20 +02:00
/**
2021-05-08 11:35:35 +02:00
* Printing is active when a job is underway but not paused
2019-10-03 01:54:20 +02:00
*/
2021-05-08 11:35:35 +02:00
bool printingIsActive() { return !did_pause_print && printJobOngoing(); }
2019-10-03 01:54:20 +02:00
/**
* Printing is paused according to SD or host indicators
*/
bool printingIsPaused() {
return did_pause_print || print_job_timer.isPaused() || IS_SD_PAUSED();
}
void startOrResumeJob() {
2019-10-27 23:49:27 +01:00
if (!printingIsPaused()) {
2020-11-27 04:18:40 +01:00
TERN_(GCODE_REPEAT_MARKERS, repeat.reset());
2020-04-22 23:35:03 +02:00
TERN_(CANCEL_OBJECTS, cancelable.reset());
TERN_(LCD_SHOW_E_TOTAL, e_move_accumulator = 0);
#if BOTH(LCD_SET_PROGRESS_MANUALLY, USE_M73_REMAINING_TIME)
2019-11-13 02:36:54 +01:00
ui.reset_remaining_time();
#endif
2019-10-27 23:49:27 +01:00
}
print_job_timer.start();
2019-10-03 01:54:20 +02:00
}
2019-10-29 23:04:39 +01:00
#if ENABLED(SDSUPPORT)
inline void abortSDPrinting() {
IF_DISABLED(NO_SD_AUTOSTART, card.autofile_cancel());
2021-05-08 11:35:35 +02:00
card.abortFilePrintNow(TERN_(SD_RESORT, true));
2021-01-25 11:56:54 +01:00
2019-10-29 23:04:39 +01:00
queue.clear();
quickstop_stepper();
print_job_timer.abort();
2021-01-25 11:56:54 +01:00
IF_DISABLED(SD_ABORT_NO_COOLDOWN, thermalManager.disable_all_heaters());
TERN(HAS_CUTTER, cutter.kill(), thermalManager.zero_fan_speeds()); // Full cutter shutdown including ISR control
2019-10-29 23:04:39 +01:00
wait_for_heatup = false;
2021-01-25 11:56:54 +01:00
2020-04-22 23:35:03 +02:00
TERN_(POWER_LOSS_RECOVERY, recovery.purge());
2021-01-25 11:56:54 +01:00
2020-08-11 03:25:35 +02:00
#ifdef EVENT_GCODE_SD_ABORT
queue.inject_P(PSTR(EVENT_GCODE_SD_ABORT));
2019-10-29 23:04:39 +01:00
#endif
TERN_(PASSWORD_AFTER_SD_PRINT_ABORT, password.lock_machine());
2019-10-29 23:04:39 +01:00
}
inline void finishSDPrinting() {
2021-05-08 05:39:34 +02:00
if (queue.enqueue_one_P(PSTR("M1001"))) { // Keep trying until it gets queued
marlin_state = MF_RUNNING; // Signal to stop trying
TERN_(PASSWORD_AFTER_SD_PRINT_END, password.lock_machine());
2021-02-28 00:35:32 +01:00
TERN_(DGUS_LCD_UI_MKS, ScreenHandler.SDPrintingFinished());
}
}
#endif // SDSUPPORT
2019-10-29 22:00:17 +01:00
2015-04-04 00:31:35 +02:00
/**
* Minimal management of Marlin's core activities:
* - Keep the command buffer full
* - Check for maximum inactive time between commands
* - Check for maximum inactive time between stepper commands
2018-11-05 08:08:40 +01:00
* - Check if CHDK_PIN needs to go LOW
* - Check for KILL button held down
* - Check for HOME button held down
* - Check for CUSTOM USER button held down
* - Check if cooling fan needs to be switched on
* - Check if an idle but hot extruder needs filament extruded (EXTRUDER_RUNOUT_PREVENT)
2019-02-27 04:03:13 +01:00
* - Pulse FET_SAFETY_PIN if it exists
2015-04-04 00:31:35 +02:00
*/
inline void manage_inactivity(const bool ignore_stepper_queue=false) {
2015-08-05 13:40:36 +02:00
queue.get_available_commands();
2015-04-04 00:31:35 +02:00
2017-03-29 02:45:54 +02:00
const millis_t ms = millis();
2015-04-04 00:31:35 +02:00
// Prevent steppers timing-out in the middle of M600
2020-07-02 05:28:37 +02:00
// unless PAUSE_PARK_NO_STEPPER_TIMEOUT is disabled
const bool parked_or_ignoring = ignore_stepper_queue
|| TERN0(PAUSE_PARK_NO_STEPPER_TIMEOUT, did_pause_print);
2020-07-02 05:28:37 +02:00
// Reset both the M18/M84 activity timeout and the M85 max 'kill' timeout
if (parked_or_ignoring) gcode.reset_stepper_timeout(ms);
if (gcode.stepper_max_timed_out(ms)) {
2021-02-05 06:22:42 +01:00
SERIAL_ERROR_MSG(STR_KILL_INACTIVE_TIME, parser.command_ptr);
kill();
}
2017-02-10 07:13:58 +01:00
2020-11-10 10:27:34 +01:00
// M18 / M84 : Handle steppers inactive time timeout
if (gcode.stepper_inactive_time) {
2020-07-02 05:28:37 +02:00
2019-01-24 02:06:54 +01:00
static bool already_shutdown_steppers; // = false
2020-07-02 05:28:37 +02:00
// Any moves in the planner? Resets both the M18/M84
// activity timeout and the M85 max 'kill' timeout
if (planner.has_blocks_queued())
gcode.reset_stepper_timeout(ms);
2020-07-02 05:28:37 +02:00
else if (!parked_or_ignoring && gcode.stepper_inactive_timeout()) {
2019-01-24 02:06:54 +01:00
if (!already_shutdown_steppers) {
already_shutdown_steppers = true; // L6470 SPI will consume 99% of free time without this
2020-07-02 05:28:37 +02:00
// Individual axes will be disabled if configured
if (ENABLED(DISABLE_INACTIVE_X)) DISABLE_AXIS_X();
if (ENABLED(DISABLE_INACTIVE_Y)) DISABLE_AXIS_Y();
if (ENABLED(DISABLE_INACTIVE_Z)) DISABLE_AXIS_Z();
if (ENABLED(DISABLE_INACTIVE_E)) disable_e_steppers();
2020-07-02 05:28:37 +02:00
TERN_(AUTO_BED_LEVELING_UBL, ubl.steppers_were_disabled());
2019-01-24 02:06:54 +01:00
}
}
2019-01-24 02:06:54 +01:00
else
already_shutdown_steppers = false;
}
2021-04-19 00:12:56 +02:00
#if ENABLED(PHOTO_GCODE) && PIN_EXISTS(CHDK)
// Check if CHDK should be set to LOW (after M240 set it HIGH)
extern millis_t chdk_timeout;
if (chdk_timeout && ELAPSED(ms, chdk_timeout)) {
chdk_timeout = 0;
2018-11-05 08:08:40 +01:00
WRITE(CHDK_PIN, LOW);
}
#endif
2015-04-04 00:31:35 +02:00
#if HAS_KILL
2015-08-05 13:40:36 +02:00
// Check if the kill button was pressed and wait just in case it was an accidental
// key kill key press
// -------------------------------------------------------------------------------
2015-04-04 00:45:41 +02:00
static int killCount = 0; // make the inactivity button a bit less responsive
const int KILL_DELAY = 750;
if (kill_state())
killCount++;
else if (killCount > 0)
killCount--;
2015-04-04 00:31:35 +02:00
// Exceeded threshold and we can confirm that it was not accidental
// KILL the machine
// ----------------------------------------------------------------
if (killCount >= KILL_DELAY) {
SERIAL_ERROR_MSG(STR_KILL_BUTTON);
kill();
}
#endif
2015-04-04 00:31:35 +02:00
#if HAS_HOME
// Handle a standalone HOME button
constexpr millis_t HOME_DEBOUNCE_DELAY = 1000UL;
static millis_t next_home_key_ms; // = 0
if (!IS_SD_PRINTING() && !READ(HOME_PIN)) { // HOME_PIN goes LOW when pressed
const millis_t ms = millis();
if (ELAPSED(ms, next_home_key_ms)) {
next_home_key_ms = ms + HOME_DEBOUNCE_DELAY;
LCD_MESSAGEPGM(MSG_AUTO_HOME);
queue.inject_P(G28_STR);
2015-04-04 00:31:35 +02:00
}
}
2015-04-04 00:31:35 +02:00
#endif
2015-08-05 13:40:36 +02:00
#if ENABLED(CUSTOM_USER_BUTTONS)
// Handle a custom user button if defined
const bool printer_not_busy = !printingIsActive();
#define HAS_CUSTOM_USER_BUTTON(N) (PIN_EXISTS(BUTTON##N) && defined(BUTTON##N##_HIT_STATE) && defined(BUTTON##N##_GCODE) && defined(BUTTON##N##_DESC))
#define CHECK_CUSTOM_USER_BUTTON(N) do{ \
constexpr millis_t CUB_DEBOUNCE_DELAY_##N = 250UL; \
static millis_t next_cub_ms_##N; \
if (BUTTON##N##_HIT_STATE == READ(BUTTON##N##_PIN) \
&& (ENABLED(BUTTON##N##_WHEN_PRINTING) || printer_not_busy)) { \
const millis_t ms = millis(); \
if (ELAPSED(ms, next_cub_ms_##N)) { \
next_cub_ms_##N = ms + CUB_DEBOUNCE_DELAY_##N; \
if (strlen(BUTTON##N##_DESC)) \
LCD_MESSAGEPGM_P(PSTR(BUTTON##N##_DESC)); \
queue.inject_P(PSTR(BUTTON##N##_GCODE)); \
} \
} \
}while(0)
#if HAS_CUSTOM_USER_BUTTON(1)
CHECK_CUSTOM_USER_BUTTON(1);
#endif
#if HAS_CUSTOM_USER_BUTTON(2)
CHECK_CUSTOM_USER_BUTTON(2);
#endif
#if HAS_CUSTOM_USER_BUTTON(3)
CHECK_CUSTOM_USER_BUTTON(3);
#endif
#if HAS_CUSTOM_USER_BUTTON(4)
CHECK_CUSTOM_USER_BUTTON(4);
#endif
#if HAS_CUSTOM_USER_BUTTON(5)
CHECK_CUSTOM_USER_BUTTON(5);
#endif
#if HAS_CUSTOM_USER_BUTTON(6)
CHECK_CUSTOM_USER_BUTTON(6);
#endif
#if HAS_CUSTOM_USER_BUTTON(7)
CHECK_CUSTOM_USER_BUTTON(7);
#endif
#if HAS_CUSTOM_USER_BUTTON(8)
CHECK_CUSTOM_USER_BUTTON(8);
#endif
#if HAS_CUSTOM_USER_BUTTON(9)
CHECK_CUSTOM_USER_BUTTON(9);
#endif
#if HAS_CUSTOM_USER_BUTTON(10)
CHECK_CUSTOM_USER_BUTTON(10);
#endif
#if HAS_CUSTOM_USER_BUTTON(11)
CHECK_CUSTOM_USER_BUTTON(11);
#endif
#if HAS_CUSTOM_USER_BUTTON(12)
CHECK_CUSTOM_USER_BUTTON(12);
#endif
#if HAS_CUSTOM_USER_BUTTON(13)
CHECK_CUSTOM_USER_BUTTON(13);
#endif
#if HAS_CUSTOM_USER_BUTTON(14)
CHECK_CUSTOM_USER_BUTTON(14);
#endif
#if HAS_CUSTOM_USER_BUTTON(15)
CHECK_CUSTOM_USER_BUTTON(15);
#endif
#if HAS_CUSTOM_USER_BUTTON(16)
CHECK_CUSTOM_USER_BUTTON(16);
#endif
#if HAS_CUSTOM_USER_BUTTON(17)
CHECK_CUSTOM_USER_BUTTON(17);
#endif
#if HAS_CUSTOM_USER_BUTTON(18)
CHECK_CUSTOM_USER_BUTTON(18);
#endif
#if HAS_CUSTOM_USER_BUTTON(19)
CHECK_CUSTOM_USER_BUTTON(19);
#endif
#if HAS_CUSTOM_USER_BUTTON(20)
CHECK_CUSTOM_USER_BUTTON(20);
#endif
#if HAS_CUSTOM_USER_BUTTON(21)
CHECK_CUSTOM_USER_BUTTON(21);
#endif
#if HAS_CUSTOM_USER_BUTTON(22)
CHECK_CUSTOM_USER_BUTTON(22);
#endif
#if HAS_CUSTOM_USER_BUTTON(23)
CHECK_CUSTOM_USER_BUTTON(23);
#endif
#if HAS_CUSTOM_USER_BUTTON(24)
CHECK_CUSTOM_USER_BUTTON(24);
#endif
#if HAS_CUSTOM_USER_BUTTON(25)
CHECK_CUSTOM_USER_BUTTON(25);
#endif
#endif
2020-04-22 23:35:03 +02:00
TERN_(USE_CONTROLLER_FAN, controllerFan.update()); // Check if fan should be turned on to cool stepper drivers down
2015-04-04 00:31:35 +02:00
2020-04-22 23:35:03 +02:00
TERN_(AUTO_POWER_CONTROL, powerManager.check());
2020-05-18 07:50:35 +02:00
TERN_(HOTEND_IDLE_TIMEOUT, hotend_idle.check());
#if ENABLED(EXTRUDER_RUNOUT_PREVENT)
2021-04-24 02:06:55 +02:00
if (thermalManager.degHotend(active_extruder) > (EXTRUDER_RUNOUT_MINTEMP)
2020-04-04 02:49:45 +02:00
&& ELAPSED(ms, gcode.previous_move_ms + SEC_TO_MS(EXTRUDER_RUNOUT_SECONDS))
&& !planner.has_blocks_queued()
) {
#if ENABLED(SWITCHING_EXTRUDER)
2018-05-28 00:56:21 +02:00
bool oldstatus;
switch (active_extruder) {
default: oldstatus = E0_ENABLE_READ(); ENABLE_AXIS_E0(); break;
2018-05-28 00:56:21 +02:00
#if E_STEPPERS > 1
case 2: case 3: oldstatus = E1_ENABLE_READ(); ENABLE_AXIS_E1(); break;
2018-05-28 00:56:21 +02:00
#if E_STEPPERS > 2
case 4: case 5: oldstatus = E2_ENABLE_READ(); ENABLE_AXIS_E2(); break;
2020-02-01 22:18:01 +01:00
#if E_STEPPERS > 3
case 6: case 7: oldstatus = E3_ENABLE_READ(); ENABLE_AXIS_E3(); break;
#endif // E_STEPPERS > 3
2018-05-28 00:56:21 +02:00
#endif // E_STEPPERS > 2
#endif // E_STEPPERS > 1
}
#else // !SWITCHING_EXTRUDER
bool oldstatus;
switch (active_extruder) {
2019-11-10 00:59:04 +01:00
default:
#define _CASE_EN(N) case N: oldstatus = E##N##_ENABLE_READ(); ENABLE_AXIS_E##N(); break;
2019-11-10 00:59:04 +01:00
REPEAT(E_STEPPERS, _CASE_EN);
}
2019-11-10 00:59:04 +01:00
#endif
2019-09-29 11:25:39 +02:00
const float olde = current_position.e;
current_position.e += EXTRUDER_RUNOUT_EXTRUDE;
line_to_current_position(MMM_TO_MMS(EXTRUDER_RUNOUT_SPEED));
current_position.e = olde;
planner.set_e_position_mm(olde);
planner.synchronize();
2018-05-28 00:56:21 +02:00
#if ENABLED(SWITCHING_EXTRUDER)
2018-05-28 00:56:21 +02:00
switch (active_extruder) {
default: oldstatus = E0_ENABLE_WRITE(oldstatus); break;
#if E_STEPPERS > 1
case 2: case 3: oldstatus = E1_ENABLE_WRITE(oldstatus); break;
#if E_STEPPERS > 2
case 4: case 5: oldstatus = E2_ENABLE_WRITE(oldstatus); break;
2018-05-28 00:56:21 +02:00
#endif // E_STEPPERS > 2
#endif // E_STEPPERS > 1
}
#else // !SWITCHING_EXTRUDER
switch (active_extruder) {
2019-11-10 00:59:04 +01:00
#define _CASE_RESTORE(N) case N: E##N##_ENABLE_WRITE(oldstatus); break;
REPEAT(E_STEPPERS, _CASE_RESTORE);
}
#endif // !SWITCHING_EXTRUDER
gcode.reset_stepper_timeout(ms);
}
#endif // EXTRUDER_RUNOUT_PREVENT
2015-04-04 00:31:35 +02:00
#if ENABLED(DUAL_X_CARRIAGE)
// handle delayed move timeout
2021-01-04 05:22:21 +01:00
if (delayed_move_time && ELAPSED(ms, delayed_move_time) && IsRunning()) {
// travel moves have been received so enact them
delayed_move_time = 0xFFFFFFFFUL; // force moves to be done
2019-09-29 11:25:39 +02:00
destination = current_position;
2020-03-01 23:59:04 +01:00
prepare_line_to_destination();
planner.synchronize();
}
#endif
2015-04-04 00:31:35 +02:00
2020-04-22 23:35:03 +02:00
TERN_(TEMP_STAT_LEDS, handle_status_leds());
2015-04-04 00:31:35 +02:00
2020-04-22 23:35:03 +02:00
TERN_(MONITOR_DRIVER_STATUS, monitor_tmc_drivers());
2020-04-22 23:35:03 +02:00
TERN_(MONITOR_L6470_DRIVER_STATUS, L64xxManager.monitor_driver());
2019-01-24 02:06:54 +01:00
// Limit check_axes_activity frequency to 10Hz
static millis_t next_check_axes_ms = 0;
if (ELAPSED(ms, next_check_axes_ms)) {
planner.check_axes_activity();
next_check_axes_ms = ms + 100UL;
}
2019-02-27 04:03:13 +01:00
#if PIN_EXISTS(FET_SAFETY)
static millis_t FET_next;
if (ELAPSED(ms, FET_next)) {
2020-01-09 03:00:06 +01:00
FET_next = ms + FET_SAFETY_DELAY; // 2µs pulse every FET_SAFETY_DELAY mS
2019-02-27 04:03:13 +01:00
OUT_WRITE(FET_SAFETY_PIN, !FET_SAFETY_INVERTED);
DELAY_US(2);
WRITE(FET_SAFETY_PIN, FET_SAFETY_INVERTED);
}
#endif
}
/**
* Standard idle routine keeps the machine alive:
* - Core Marlin activities
* - Manage heaters (and Watchdog)
* - Max7219 heartbeat, animation, etc.
*
* Only after setup() is complete:
* - Handle filament runout sensors
* - Run HAL idle tasks
* - Handle Power-Loss Recovery
* - Run StallGuard endstop checks
* - Handle SD Card insert / remove
* - Handle USB Flash Drive insert / remove
* - Announce Host Keepalive state (if any)
* - Update the Print Job Timer state
* - Update the Beeper queue
* - Read Buttons and Update the LCD
* - Run i2c Position Encoders
* - Auto-report Temperatures / SD Status
2020-08-26 09:15:43 +02:00
* - Update the Průša MMU2
* - Handle Joystick jogging
*/
2020-04-02 08:22:48 +02:00
void idle(TERN_(ADVANCED_PAUSE_FEATURE, bool no_stepper_sleep/*=false*/)) {
2020-12-07 11:04:38 +01:00
#if ENABLED(MARLIN_DEV_MODE)
2021-02-01 00:21:27 +01:00
static uint16_t idle_depth = 0;
if (++idle_depth > 5) SERIAL_ECHOLNPAIR("idle() call depth: ", idle_depth);
2020-12-07 11:04:38 +01:00
#endif
// Core Marlin activities
manage_inactivity(TERN_(ADVANCED_PAUSE_FEATURE, no_stepper_sleep));
// Manage Heaters (and Watchdog)
thermalManager.manage_heater();
// Max7219 heartbeat, animation, etc
2020-04-22 23:35:03 +02:00
TERN_(MAX7219_DEBUG, max7219.idle_tasks());
// Return if setup() isn't completed
2020-12-07 11:04:38 +01:00
if (marlin_state == MF_INITIALIZING) goto IDLE_DONE;
2021-04-16 15:02:31 +02:00
// TODO: Still causing errors
(void)check_tool_sensor_stats(active_extruder, true);
// Handle filament runout sensors
2020-04-22 23:35:03 +02:00
TERN_(HAS_FILAMENT_SENSOR, runout.run());
// Run HAL idle tasks
2020-11-18 08:27:21 +01:00
TERN_(HAL_IDLETASK, HAL_idletask());
2020-10-20 21:35:29 +02:00
// Check network connection
TERN_(HAS_ETHERNET, ethernet.check());
2020-04-02 08:22:48 +02:00
// Handle Power-Loss Recovery
2019-09-11 01:52:41 +02:00
#if ENABLED(POWER_LOSS_RECOVERY) && PIN_EXISTS(POWER_LOSS)
2021-05-08 11:35:35 +02:00
if (IS_SD_PRINTING()) recovery.outage();
2019-09-11 01:52:41 +02:00
#endif
2020-04-02 08:22:48 +02:00
// Run StallGuard endstop checks
#if ENABLED(SPI_ENDSTOPS)
if (endstops.tmc_spi_homing.any
2020-04-02 08:22:48 +02:00
&& TERN1(IMPROVE_HOMING_RELIABILITY, ELAPSED(millis(), sg_guard_period))
) LOOP_L_N(i, 4) // Read SGT 4 times per idle loop
if (endstops.tmc_spi_homing_check()) break;
#endif
// Handle SD Card insert / remove
2020-04-22 23:35:03 +02:00
TERN_(SDSUPPORT, card.manage_media());
// Handle USB Flash Drive insert / remove
TERN_(USB_FLASH_DRIVE_SUPPORT, card.diskIODriver()->idle());
2020-04-02 08:22:48 +02:00
// Announce Host Keepalive state (if any)
2020-04-22 23:35:03 +02:00
TERN_(HOST_KEEPALIVE_FEATURE, gcode.host_keepalive());
2020-04-02 08:22:48 +02:00
// Update the Print Job Timer state
2020-04-22 23:35:03 +02:00
TERN_(PRINTCOUNTER, print_job_timer.tick());
2020-04-02 08:22:48 +02:00
// Update the Beeper queue
2020-04-22 23:35:03 +02:00
TERN_(USE_BEEPER, buzzer.tick());
2020-06-21 09:40:16 +02:00
// Handle UI input / draw events
TERN(DWIN_CREALITY_LCD, DWIN_Update(), ui.update());
2020-04-02 08:22:48 +02:00
// Run i2c Position Encoders
#if ENABLED(I2C_POSITION_ENCODERS)
2020-12-07 11:04:38 +01:00
{
static millis_t i2cpem_next_update_ms;
2019-07-24 08:52:36 +02:00
if (planner.has_blocks_queued()) {
const millis_t ms = millis();
if (ELAPSED(ms, i2cpem_next_update_ms)) {
I2CPEM.update();
i2cpem_next_update_ms = ms + I2CPE_MIN_UPD_TIME_MS;
}
}
2020-12-07 11:04:38 +01:00
}
#endif
2020-04-02 08:22:48 +02:00
// Auto-report Temperatures / SD Status
#if HAS_AUTO_REPORTING
if (!gcode.autoreport_paused) {
TERN_(AUTO_REPORT_TEMPERATURES, thermalManager.auto_reporter.tick());
TERN_(AUTO_REPORT_SD_STATUS, card.auto_reporter.tick());
}
#endif
2018-07-02 17:06:17 +02:00
2020-08-26 09:15:43 +02:00
// Update the Průša MMU2
2020-11-18 08:27:21 +01:00
TERN_(HAS_PRUSA_MMU2, mmu2.mmu_loop());
2020-04-02 08:22:48 +02:00
// Handle Joystick jogging
2020-04-22 23:35:03 +02:00
TERN_(POLL_JOG, joystick.inject_jog_moves());
2020-05-12 02:22:41 +02:00
// Direct Stepping
TERN_(DIRECT_STEPPING, page_manager.write_responses());
2020-11-18 08:27:21 +01:00
// Update the LVGL interface
TERN_(HAS_TFT_LVGL_UI, LV_TASK_HANDLER());
2020-12-07 11:04:38 +01:00
IDLE_DONE:
TERN_(MARLIN_DEV_MODE, idle_depth--);
return;
}
/**
* Kill all activity and lock the machine.
* After this the machine will need to be reset.
*/
2019-10-10 02:46:10 +02:00
void kill(PGM_P const lcd_error/*=nullptr*/, PGM_P const lcd_component/*=nullptr*/, const bool steppers_off/*=false*/) {
thermalManager.disable_all_heaters();
2017-03-29 02:45:54 +02:00
2020-04-22 23:35:03 +02:00
TERN_(HAS_CUTTER, cutter.kill()); // Full cutter shutdown including ISR control
2021-05-06 00:22:46 +02:00
// Echo the LCD message to serial for extra context
if (lcd_error) { SERIAL_ECHO_START(); SERIAL_ECHOLNPGM_P(lcd_error); }
2019-05-08 03:32:50 +02:00
#if HAS_DISPLAY
2019-11-10 04:17:18 +01:00
ui.kill_screen(lcd_error ?: GET_TEXT(MSG_KILLED), lcd_component ?: NUL_STR);
2015-10-04 17:33:55 +02:00
#else
2021-05-06 00:22:46 +02:00
UNUSED(lcd_error); UNUSED(lcd_component);
#endif
2021-05-06 00:22:46 +02:00
TERN_(HAS_TFT_LVGL_UI, lv_draw_error_message(lcd_error));
// "Error:Printer halted. kill() called!"
SERIAL_ERROR_MSG(STR_ERR_KILLED);
2017-07-28 06:42:01 +02:00
#ifdef ACTION_ON_KILL
2019-01-28 05:43:13 +01:00
host_action_kill();
#endif
2017-07-07 04:24:30 +02:00
minkill(steppers_off);
}
void minkill(const bool steppers_off/*=false*/) {
// Wait a short time (allows messages to get out before shutting down.
2018-10-21 20:43:21 +02:00
for (int i = 1000; i--;) DELAY_US(600);
cli(); // Stop interrupts
// Wait to ensure all interrupts stopped
2018-10-21 20:43:21 +02:00
for (int i = 1000; i--;) DELAY_US(250);
// Reiterate heaters off
thermalManager.disable_all_heaters();
2020-04-22 23:35:03 +02:00
TERN_(HAS_CUTTER, cutter.kill()); // Reiterate cutter shutdown
// Power off all steppers (for M112) or just the E steppers
steppers_off ? disable_all_steppers() : disable_e_steppers();
2020-04-22 23:35:03 +02:00
TERN_(PSU_CONTROL, PSU_OFF());
2015-03-31 01:50:05 +02:00
2020-04-22 23:35:03 +02:00
TERN_(HAS_SUICIDE, suicide());
#if EITHER(HAS_KILL, SOFT_RESET_ON_KILL)
// Wait for both KILL and ENC to be released
while (TERN0(HAS_KILL, !kill_state()) || TERN0(SOFT_RESET_ON_KILL, !ui.button_pressed()))
watchdog_refresh();
// Wait for either KILL or ENC press
while (TERN1(HAS_KILL, kill_state()) && TERN1(SOFT_RESET_ON_KILL, ui.button_pressed()))
watchdog_refresh();
// Reboot the board
HAL_reboot();
#else
for (;;) watchdog_refresh(); // Wait for RESET button or power-cycle
#endif
}
/**
* Turn off heaters and stop the print in progress
* After a stop the machine may be resumed with M999
*/
2016-04-18 09:05:22 +02:00
void stop() {
thermalManager.disable_all_heaters(); // 'unpause' taken care of in here
2021-01-25 15:32:58 +01:00
print_job_timer.stop();
2021-03-18 01:23:36 +01:00
#if EITHER(PROBING_FANS_OFF, ADVANCED_PAUSE_FANS_PAUSE)
thermalManager.set_fans_paused(false); // Un-pause fans for safety
#endif
2021-05-08 11:35:35 +02:00
if (!IsStopped()) {
SERIAL_ERROR_MSG(STR_ERR_STOPPED);
LCD_MESSAGEPGM(MSG_STOPPED);
safe_delay(350); // allow enough time for messages to get out before stopping
2020-03-15 00:47:44 +01:00
marlin_state = MF_STOPPED;
}
}
2020-09-25 04:19:04 +02:00
inline void tmc_standby_setup() {
#if PIN_EXISTS(X_STDBY)
SET_INPUT_PULLDOWN(X_STDBY_PIN);
#endif
#if PIN_EXISTS(X2_STDBY)
SET_INPUT_PULLDOWN(X2_STDBY_PIN);
#endif
#if PIN_EXISTS(Y_STDBY)
SET_INPUT_PULLDOWN(Y_STDBY_PIN);
#endif
#if PIN_EXISTS(Y2_STDBY)
SET_INPUT_PULLDOWN(Y2_STDBY_PIN);
#endif
#if PIN_EXISTS(Z_STDBY)
SET_INPUT_PULLDOWN(Z_STDBY_PIN);
#endif
#if PIN_EXISTS(Z2_STDBY)
SET_INPUT_PULLDOWN(Z2_STDBY_PIN);
#endif
#if PIN_EXISTS(Z3_STDBY)
SET_INPUT_PULLDOWN(Z3_STDBY_PIN);
#endif
#if PIN_EXISTS(Z4_STDBY)
SET_INPUT_PULLDOWN(Z4_STDBY_PIN);
#endif
#if PIN_EXISTS(E0_STDBY)
SET_INPUT_PULLDOWN(E0_STDBY_PIN);
#endif
#if PIN_EXISTS(E1_STDBY)
SET_INPUT_PULLDOWN(E1_STDBY_PIN);
#endif
#if PIN_EXISTS(E2_STDBY)
SET_INPUT_PULLDOWN(E2_STDBY_PIN);
#endif
#if PIN_EXISTS(E3_STDBY)
SET_INPUT_PULLDOWN(E3_STDBY_PIN);
#endif
#if PIN_EXISTS(E4_STDBY)
SET_INPUT_PULLDOWN(E4_STDBY_PIN);
#endif
#if PIN_EXISTS(E5_STDBY)
SET_INPUT_PULLDOWN(E5_STDBY_PIN);
#endif
#if PIN_EXISTS(E6_STDBY)
SET_INPUT_PULLDOWN(E6_STDBY_PIN);
#endif
#if PIN_EXISTS(E7_STDBY)
SET_INPUT_PULLDOWN(E7_STDBY_PIN);
#endif
}
2016-09-12 03:21:54 +02:00
/**
2021-03-18 01:24:07 +01:00
* Marlin Firmware entry-point. Abandon Hope All Ye Who Enter Here.
* Setup before the program loop:
*
* - Call any special pre-init set for the board
* - Put TMC drivers into Low Power Standby mode
* - Init the serial ports (so setup can be debugged)
* - Set up the kill and suicide pins
* - Prepare (disable) board JTAG and Debug ports
* - Init serial for a connected MKS TFT with WiFi
* - Install Marlin custom Exception Handlers, if set.
* - Init Marlin's HAL interfaces (for SPI, i2c, etc.)
* - Init some optional hardware and features:
* MAX Thermocouple pins
* Duet Smart Effector
* Filament Runout Sensor
* TMC220x Stepper Drivers (Serial)
* PSU control
* Power-loss Recovery
* L64XX Stepper Drivers (SPI)
* Stepper Driver Reset: DISABLE
* TMC Stepper Drivers (SPI)
* Run BOARD_INIT if defined
* ESP WiFi
* - Get the Reset Reason and report it
2016-09-12 03:21:54 +02:00
* - Print startup messages and diagnostics
2021-03-18 01:24:07 +01:00
* - Calibrate the HAL DELAY for precise timing
* - Init the buzzer, possibly a custom timer
* - Init more optional hardware:
* Color LED illumination
* Neopixel illumination
* Controller Fan
* Creality DWIN LCD (show boot image)
* Tare the Probe if possible
* - Mount the (most likely external) SD Card
* - Load settings from EEPROM (or use defaults)
* - Init the Ethernet Port
* - Init Touch Buttons (for emulated DOGLCD)
* - Adjust the (certainly wrong) current position by the home offset
* - Init the Planner::position (steps) based on current (native) position
* - Initialize more managers and peripherals:
* Temperatures
* Print Job Timer
* Endstops and Endstop Interrupts
* Stepper ISR - Kind of Important!
* Servos
* Servo-based Probe
* Photograph Pin
* Laser/Spindle tool Power / PWM
* Coolant Control
* Bed Probe
* Stepper Driver Reset: ENABLE
* Digipot I2C - Stepper driver current control
* Stepper DAC - Stepper driver current control
* Solenoid (probe, or for other use)
* Home Pin
* Custom User Buttons
* Red/Blue Status LEDs
* Case Light
* Prusa MMU filament changer
* Fan Multiplexer
* Mixing Extruder
* BLTouch Probe
* I2C Position Encoders
* Custom I2C Bus handlers
* Enhanced tools or extruders:
* Switching Extruder
* Switching Nozzle
* Parking Extruder
* Magnetic Parking Extruder
* Switching Toolhead
* Electromagnetic Switching Toolhead
* Watchdog Timer - Also Kind of Important!
* Closed Loop Controller
* - Run Startup Commands, if defined
* - Tell host to close Host Prompts
* - Test Trinamic driver connections
* - Init Prusa MMU2 filament changer
* - Init and test BL24Cxx EEPROM
* - Init Creality DWIN encoder, show faux progress bar
* - Reset Status Message / Show Service Messages
* - Init MAX7219 LED Matrix
* - Init Direct Stepping (Klipper-style motion control)
* - Init TFT LVGL UI (with 3D Graphics)
* - Apply Password Lock - Hold for Authentication
* - Open Touch Screen Calibration screen, if not calibrated
* - Set Marlin to RUNNING State
2016-09-12 03:21:54 +02:00
*/
void setup() {
#ifdef BOARD_PREINIT
BOARD_PREINIT(); // Low-level init (before serial init)
#endif
2016-09-12 03:21:54 +02:00
2020-09-25 04:19:04 +02:00
tmc_standby_setup(); // TMC Low Power Standby pins must be set early or they're not usable
2020-04-16 10:36:53 +02:00
#if ENABLED(MARLIN_DEV_MODE)
auto log_current_ms = [&](PGM_P const msg) {
SERIAL_ECHO_START();
SERIAL_CHAR('['); SERIAL_ECHO(millis()); SERIAL_ECHOPGM("] ");
2021-03-01 02:43:46 +01:00
SERIAL_ECHOLNPGM_P(msg);
2020-04-16 10:36:53 +02:00
};
#define SETUP_LOG(M) log_current_ms(PSTR(M))
#else
#define SETUP_LOG(...) NOOP
#endif
#define SETUP_RUN(C) do{ SETUP_LOG(STRINGIFY(C)); C; }while(0)
2021-03-10 18:35:19 +01:00
MYSERIAL1.begin(BAUDRATE);
2021-01-31 23:50:12 +01:00
millis_t serial_connect_timeout = millis() + 1000UL;
2021-03-10 18:35:19 +01:00
while (!MYSERIAL1.connected() && PENDING(millis(), serial_connect_timeout)) { /*nada*/ }
2021-01-31 23:50:12 +01:00
#if HAS_MULTI_SERIAL && !HAS_ETHERNET
2021-03-10 18:35:19 +01:00
MYSERIAL2.begin(BAUDRATE);
2021-01-31 23:50:12 +01:00
serial_connect_timeout = millis() + 1000UL;
2021-03-10 18:35:19 +01:00
while (!MYSERIAL2.connected() && PENDING(millis(), serial_connect_timeout)) { /*nada*/ }
2021-05-07 07:31:45 +02:00
#ifdef SERIAL_PORT_3
MYSERIAL3.begin(BAUDRATE);
serial_connect_timeout = millis() + 1000UL;
while (!MYSERIAL3.connected() && PENDING(millis(), serial_connect_timeout)) { /*nada*/ }
#endif
2021-01-31 23:50:12 +01:00
#endif
SERIAL_ECHOLNPGM("start");
// Set up these pins early to prevent suicide
#if HAS_KILL
SETUP_LOG("KILL_PIN");
#if KILL_PIN_STATE
SET_INPUT_PULLDOWN(KILL_PIN);
#else
SET_INPUT_PULLUP(KILL_PIN);
#endif
#endif
#if HAS_SUICIDE
SETUP_LOG("SUICIDE_PIN");
OUT_WRITE(SUICIDE_PIN, !SUICIDE_PIN_INVERTING);
#endif
2020-04-12 04:29:52 +02:00
#if EITHER(DISABLE_DEBUG, DISABLE_JTAG)
// Disable any hardware debug to free up pins for IO
2020-04-12 04:29:52 +02:00
#if ENABLED(DISABLE_DEBUG) && defined(JTAGSWD_DISABLE)
JTAGSWD_DISABLE();
#elif defined(JTAG_DISABLE)
JTAG_DISABLE();
#else
2020-04-12 04:29:52 +02:00
#error "DISABLE_(DEBUG|JTAG) is not supported for the selected MCU/Board."
#endif
2020-04-12 04:29:52 +02:00
#endif
2020-11-19 22:51:53 +01:00
#if BOTH(HAS_TFT_LVGL_UI, MKS_WIFI_MODULE)
mks_esp_wifi_init();
WIFISERIAL.begin(WIFI_BAUDRATE);
serial_connect_timeout = millis() + 1000UL;
while (/*!WIFISERIAL && */PENDING(millis(), serial_connect_timeout)) { /*nada*/ }
#endif
TERN_(DYNAMIC_VECTORTABLE, hook_cpu_exceptions()); // If supported, install Marlin exception handlers at runtime
2020-04-12 04:29:52 +02:00
SETUP_RUN(HAL_init());
// Init and disable SPI thermocouples; this is still needed
#if TEMP_SENSOR_0_IS_MAX_TC
OUT_WRITE(MAX6675_SS_PIN, HIGH); // Disable
#endif
#if TEMP_SENSOR_1_IS_MAX_TC
OUT_WRITE(MAX6675_SS2_PIN, HIGH); // Disable
#endif
2020-08-23 09:07:42 +02:00
#if ENABLED(DUET_SMART_EFFECTOR) && PIN_EXISTS(SMART_EFFECTOR_MOD)
2020-04-12 04:29:52 +02:00
OUT_WRITE(SMART_EFFECTOR_MOD_PIN, LOW); // Put Smart Effector into NORMAL mode
2016-09-12 03:21:54 +02:00
#endif
2019-02-13 03:08:34 +01:00
#if HAS_FILAMENT_SENSOR
2020-04-12 04:29:52 +02:00
SETUP_RUN(runout.setup());
2016-09-12 03:21:54 +02:00
#endif
2021-03-10 18:35:19 +01:00
2021-03-10 00:06:00 +01:00
#if HAS_TMC220x
SETUP_RUN(tmc_serial_begin());
#endif
2016-09-12 03:21:54 +02:00
#if ENABLED(PSU_CONTROL)
SETUP_LOG("PSU_CONTROL");
powersupply_on = ENABLED(PSU_DEFAULT_OFF);
if (ENABLED(PSU_DEFAULT_OFF)) PSU_OFF(); else PSU_ON();
#endif
#if ENABLED(POWER_LOSS_RECOVERY)
2020-04-12 04:29:52 +02:00
SETUP_RUN(recovery.setup());
#endif
#if HAS_L64XX
SETUP_RUN(L64xxManager.init()); // Set up SPI, init drivers
#endif
2016-09-12 03:21:54 +02:00
#if HAS_STEPPER_RESET
2020-04-12 04:29:52 +02:00
SETUP_RUN(disableStepperDrivers());
2016-09-12 03:21:54 +02:00
#endif
#if HAS_TMC_SPI
2018-10-03 09:48:49 +02:00
#if DISABLED(TMC_USE_SW_SPI)
2020-04-16 10:36:53 +02:00
SETUP_RUN(SPI.begin());
2018-10-03 09:48:49 +02:00
#endif
2020-04-16 10:36:53 +02:00
SETUP_RUN(tmc_init_cs_pins());
#endif
#ifdef BOARD_INIT
2020-04-16 10:36:53 +02:00
SETUP_LOG("BOARD_INIT");
BOARD_INIT();
#endif
SETUP_RUN(esp_wifi_init());
2016-09-12 03:21:54 +02:00
// Check startup - does nothing if bootloader sets MCUSR to 0
2020-04-12 04:29:52 +02:00
const byte mcu = HAL_get_reset_source();
2020-06-29 08:02:36 +02:00
if (mcu & RST_POWER_ON) SERIAL_ECHOLNPGM(STR_POWERUP);
if (mcu & RST_EXTERNAL) SERIAL_ECHOLNPGM(STR_EXTERNAL_RESET);
if (mcu & RST_BROWN_OUT) SERIAL_ECHOLNPGM(STR_BROWNOUT_RESET);
if (mcu & RST_WATCHDOG) SERIAL_ECHOLNPGM(STR_WATCHDOG_RESET);
if (mcu & RST_SOFTWARE) SERIAL_ECHOLNPGM(STR_SOFTWARE_RESET);
HAL_clear_reset_source();
2021-03-01 02:43:46 +01:00
SERIAL_ECHOPGM_P(GET_TEXT(MSG_MARLIN));
2016-09-13 00:49:35 +02:00
SERIAL_CHAR(' ');
SERIAL_ECHOLNPGM(SHORT_BUILD_VERSION);
2017-06-09 17:51:23 +02:00
SERIAL_EOL();
2016-09-13 00:49:35 +02:00
#if defined(STRING_DISTRIBUTION_DATE) && defined(STRING_CONFIG_H_AUTHOR)
SERIAL_ECHO_MSG(
2020-09-11 03:44:13 +02:00
" Last Updated: " STRING_DISTRIBUTION_DATE
" | Author: " STRING_CONFIG_H_AUTHOR
);
2016-09-13 00:49:35 +02:00
#endif
2020-09-11 03:44:13 +02:00
SERIAL_ECHO_MSG("Compiled: " __DATE__);
SERIAL_ECHO_MSG(STR_FREE_MEMORY, freeMemory(), STR_PLANNER_BUFFER_BYTES, sizeof(block_t) * (BLOCK_BUFFER_SIZE));
2016-09-12 03:21:54 +02:00
2021-02-06 05:43:51 +01:00
// Some HAL need precise delay adjustment
calibrate_delay_loop();
// Init buzzer pin(s)
#if USE_BEEPER
SETUP_RUN(buzzer.init());
#endif
// Set up LEDs early
#if HAS_COLOR_LEDS
2020-03-08 05:33:38 +01:00
SETUP_RUN(leds.setup());
#endif
2020-08-27 21:18:16 +02:00
#if ENABLED(NEOPIXEL2_SEPARATE)
SETUP_RUN(leds2.setup());
#endif
#if ENABLED(USE_CONTROLLER_FAN) // Set up fan controller to initialize also the default configurations.
SETUP_RUN(controllerFan.setup());
#endif
2020-04-12 04:29:52 +02:00
// UI must be initialized before EEPROM
// (because EEPROM code calls the UI).
2020-06-16 08:45:27 +02:00
#if ENABLED(DWIN_CREALITY_LCD)
delay(800); // Required delay (since boot?)
SERIAL_ECHOPGM("\nDWIN handshake ");
if (DWIN_Handshake()) SERIAL_ECHOLNPGM("ok."); else SERIAL_ECHOLNPGM("error.");
DWIN_Frame_SetDir(1); // Orientation 90°
DWIN_UpdateLCD(); // Show bootscreen (first image)
#else
SETUP_RUN(ui.init());
#if BOTH(HAS_WIRED_LCD, SHOW_BOOTSCREEN)
2020-06-16 08:45:27 +02:00
SETUP_RUN(ui.show_bootscreen());
const millis_t bootscreen_ms = millis();
2020-06-16 08:45:27 +02:00
#endif
SETUP_RUN(ui.reset_status()); // Load welcome message early. (Retained if no errors exist.)
#endif
2020-03-08 05:33:38 +01:00
#if PIN_EXISTS(SAFE_POWER)
#if HAS_DRIVER_SAFE_POWER_PROTECT
SETUP_RUN(stepper_driver_backward_check());
#else
SETUP_LOG("SAFE_POWER");
OUT_WRITE(SAFE_POWER_PIN, HIGH);
#endif
#endif
2020-12-27 23:23:18 +01:00
#if ENABLED(PROBE_TARE)
SETUP_RUN(probe.tare_init());
#endif
#if BOTH(SDSUPPORT, SDCARD_EEPROM_EMULATION)
SETUP_RUN(card.mount()); // Mount media with settings before first_load
2020-03-08 05:33:38 +01:00
#endif
SETUP_RUN(settings.first_load()); // Load data from EEPROM if available (or use defaults)
// This also updates variables in the planner, elsewhere
2020-10-20 21:35:29 +02:00
#if HAS_ETHERNET
SETUP_RUN(ethernet.init());
#endif
2020-11-15 23:39:58 +01:00
#if HAS_TOUCH_BUTTONS
2020-03-08 05:33:38 +01:00
SETUP_RUN(touch.init());
#endif
2020-04-22 23:35:03 +02:00
TERN_(HAS_M206_COMMAND, current_position += home_offset); // Init current position based on home_offset
2016-09-12 03:21:54 +02:00
2020-03-08 05:33:38 +01:00
sync_plan_position(); // Vital to init stepper/planner equivalent for current_position
2016-09-12 03:21:54 +02:00
2020-03-08 05:33:38 +01:00
SETUP_RUN(thermalManager.init()); // Initialize temperature loop
2016-09-12 03:21:54 +02:00
2020-03-08 05:33:38 +01:00
SETUP_RUN(print_job_timer.init()); // Initial setup of print job timer
2020-03-08 05:33:38 +01:00
SETUP_RUN(endstops.init()); // Init endstops and pullups
2020-03-08 05:33:38 +01:00
SETUP_RUN(stepper.init()); // Init stepper. This enables interrupts!
2017-09-08 22:35:25 +02:00
#if HAS_SERVOS
2020-03-08 05:33:38 +01:00
SETUP_RUN(servo_init());
2017-09-08 22:35:25 +02:00
#endif
2016-09-12 03:21:54 +02:00
2018-04-02 06:54:12 +02:00
#if HAS_Z_SERVO_PROBE
2020-03-08 05:33:38 +01:00
SETUP_RUN(probe.servo_probe_init());
2017-11-19 20:39:46 +01:00
#endif
2016-11-01 12:24:21 +01:00
#if HAS_PHOTOGRAPH
OUT_WRITE(PHOTOGRAPH_PIN, LOW);
#endif
2019-06-28 06:06:49 +02:00
#if HAS_CUTTER
2020-03-08 05:33:38 +01:00
SETUP_RUN(cutter.init());
2017-04-07 20:52:45 +02:00
#endif
2019-06-14 01:43:11 +02:00
#if ENABLED(COOLANT_MIST)
OUT_WRITE(COOLANT_MIST_PIN, COOLANT_MIST_INVERT); // Init Mist Coolant OFF
#endif
#if ENABLED(COOLANT_FLOOD)
OUT_WRITE(COOLANT_FLOOD_PIN, COOLANT_FLOOD_INVERT); // Init Flood Coolant OFF
#endif
2016-09-12 03:21:54 +02:00
#if HAS_BED_PROBE
2020-03-08 05:33:38 +01:00
SETUP_RUN(endstops.enable_z_probe(false));
2016-09-12 03:21:54 +02:00
#endif
#if HAS_STEPPER_RESET
2020-03-08 05:33:38 +01:00
SETUP_RUN(enableStepperDrivers());
2016-09-12 03:21:54 +02:00
#endif
2020-10-11 21:58:35 +02:00
#if HAS_MOTOR_CURRENT_I2C
SETUP_RUN(digipot_i2c.init());
2016-09-12 03:21:54 +02:00
#endif
2020-10-11 21:58:35 +02:00
#if ENABLED(HAS_MOTOR_CURRENT_DAC)
SETUP_RUN(stepper_dac.init());
2016-09-12 03:21:54 +02:00
#endif
#if EITHER(Z_PROBE_SLED, SOLENOID_PROBE) && HAS_SOLENOID_1
2018-10-02 01:33:52 +02:00
OUT_WRITE(SOL1_PIN, LOW); // OFF
2017-04-14 23:36:02 +02:00
#endif
2016-09-12 03:21:54 +02:00
2017-07-02 09:26:49 +02:00
#if HAS_HOME
SET_INPUT_PULLUP(HOME_PIN);
#endif
2016-09-12 03:21:54 +02:00
#if ENABLED(CUSTOM_USER_BUTTONS)
#define INIT_CUSTOM_USER_BUTTON_PIN(N) do{ SET_INPUT(BUTTON##N##_PIN); WRITE(BUTTON##N##_PIN, !BUTTON##N##_HIT_STATE); }while(0)
#if HAS_CUSTOM_USER_BUTTON(1)
INIT_CUSTOM_USER_BUTTON_PIN(1);
#endif
#if HAS_CUSTOM_USER_BUTTON(2)
INIT_CUSTOM_USER_BUTTON_PIN(2);
#endif
#if HAS_CUSTOM_USER_BUTTON(3)
INIT_CUSTOM_USER_BUTTON_PIN(3);
#endif
#if HAS_CUSTOM_USER_BUTTON(4)
INIT_CUSTOM_USER_BUTTON_PIN(4);
#endif
#if HAS_CUSTOM_USER_BUTTON(5)
INIT_CUSTOM_USER_BUTTON_PIN(5);
#endif
#if HAS_CUSTOM_USER_BUTTON(6)
INIT_CUSTOM_USER_BUTTON_PIN(6);
#endif
#if HAS_CUSTOM_USER_BUTTON(7)
INIT_CUSTOM_USER_BUTTON_PIN(7);
#endif
#if HAS_CUSTOM_USER_BUTTON(8)
INIT_CUSTOM_USER_BUTTON_PIN(8);
#endif
#if HAS_CUSTOM_USER_BUTTON(9)
INIT_CUSTOM_USER_BUTTON_PIN(9);
#endif
#if HAS_CUSTOM_USER_BUTTON(10)
INIT_CUSTOM_USER_BUTTON_PIN(10);
#endif
#if HAS_CUSTOM_USER_BUTTON(11)
INIT_CUSTOM_USER_BUTTON_PIN(11);
#endif
#if HAS_CUSTOM_USER_BUTTON(12)
INIT_CUSTOM_USER_BUTTON_PIN(12);
#endif
#if HAS_CUSTOM_USER_BUTTON(13)
INIT_CUSTOM_USER_BUTTON_PIN(13);
#endif
#if HAS_CUSTOM_USER_BUTTON(14)
INIT_CUSTOM_USER_BUTTON_PIN(14);
#endif
#if HAS_CUSTOM_USER_BUTTON(15)
INIT_CUSTOM_USER_BUTTON_PIN(15);
#endif
#if HAS_CUSTOM_USER_BUTTON(16)
INIT_CUSTOM_USER_BUTTON_PIN(16);
#endif
#if HAS_CUSTOM_USER_BUTTON(17)
INIT_CUSTOM_USER_BUTTON_PIN(17);
#endif
#if HAS_CUSTOM_USER_BUTTON(18)
INIT_CUSTOM_USER_BUTTON_PIN(18);
#endif
#if HAS_CUSTOM_USER_BUTTON(19)
INIT_CUSTOM_USER_BUTTON_PIN(19);
#endif
#if HAS_CUSTOM_USER_BUTTON(20)
INIT_CUSTOM_USER_BUTTON_PIN(20);
#endif
#if HAS_CUSTOM_USER_BUTTON(21)
INIT_CUSTOM_USER_BUTTON_PIN(21);
#endif
#if HAS_CUSTOM_USER_BUTTON(22)
INIT_CUSTOM_USER_BUTTON_PIN(22);
#endif
#if HAS_CUSTOM_USER_BUTTON(23)
INIT_CUSTOM_USER_BUTTON_PIN(23);
#endif
#if HAS_CUSTOM_USER_BUTTON(24)
INIT_CUSTOM_USER_BUTTON_PIN(24);
#endif
#if HAS_CUSTOM_USER_BUTTON(25)
INIT_CUSTOM_USER_BUTTON_PIN(25);
#endif
#endif
2016-09-24 22:33:29 +02:00
#if PIN_EXISTS(STAT_LED_RED)
2018-10-02 01:33:52 +02:00
OUT_WRITE(STAT_LED_RED_PIN, LOW); // OFF
2016-09-12 03:21:54 +02:00
#endif
2016-09-24 22:33:29 +02:00
#if PIN_EXISTS(STAT_LED_BLUE)
2018-10-02 01:33:52 +02:00
OUT_WRITE(STAT_LED_BLUE_PIN, LOW); // OFF
2016-09-12 03:21:54 +02:00
#endif
#if ENABLED(CASE_LIGHT_ENABLE)
2021-02-27 23:06:48 +01:00
SETUP_RUN(caselight.init());
2019-01-16 01:50:56 +01:00
#endif
2020-11-18 08:27:21 +01:00
#if HAS_PRUSA_MMU1
SETUP_LOG("Prusa MMU1");
SET_OUTPUT(E_MUX0_PIN);
SET_OUTPUT(E_MUX1_PIN);
SET_OUTPUT(E_MUX2_PIN);
#endif
#if HAS_FANMUX
2020-03-08 05:33:38 +01:00
SETUP_RUN(fanmux_init());
#endif
2018-10-16 10:38:57 +02:00
#if ENABLED(MIXING_EXTRUDER)
2020-03-08 05:33:38 +01:00
SETUP_RUN(mixer.init());
2016-09-12 03:21:54 +02:00
#endif
#if ENABLED(BLTOUCH)
2020-03-08 05:33:38 +01:00
SETUP_RUN(bltouch.init(/*set_voltage=*/true));
#endif
#if ENABLED(I2C_POSITION_ENCODERS)
2020-03-08 05:33:38 +01:00
SETUP_RUN(I2CPEM.init());
#endif
2016-09-12 03:21:54 +02:00
#if ENABLED(EXPERIMENTAL_I2CBUS) && I2C_SLAVE_ADDRESS > 0
2020-03-08 05:33:38 +01:00
SETUP_LOG("i2c...");
2016-09-12 03:21:54 +02:00
i2c.onReceive(i2c_on_receive);
i2c.onRequest(i2c_on_request);
#endif
#if DO_SWITCH_EXTRUDER
2020-03-08 05:33:38 +01:00
SETUP_RUN(move_extruder_servo(0)); // Initialize extruder servo
#endif
#if ENABLED(SWITCHING_NOZZLE)
2020-03-08 05:33:38 +01:00
SETUP_LOG("SWITCHING_NOZZLE");
// Initialize nozzle servo(s)
#if SWITCHING_NOZZLE_TWO_SERVOS
lower_nozzle(0);
raise_nozzle(1);
#else
move_nozzle_servo(0);
#endif
#endif
#if ENABLED(PARKING_EXTRUDER)
2020-03-08 05:33:38 +01:00
SETUP_RUN(pe_solenoid_init());
2021-03-18 01:24:07 +01:00
#elif ENABLED(MAGNETIC_PARKING_EXTRUDER)
SETUP_RUN(mpe_settings_init());
#elif ENABLED(SWITCHING_TOOLHEAD)
2020-04-20 07:01:14 +02:00
SETUP_RUN(swt_init());
2021-03-18 01:24:07 +01:00
#elif ENABLED(ELECTROMAGNETIC_SWITCHING_TOOLHEAD)
2020-03-08 05:33:38 +01:00
SETUP_RUN(est_init());
2019-07-01 12:55:23 +02:00
#endif
2018-11-17 03:47:07 +01:00
#if ENABLED(USE_WATCHDOG)
2020-03-08 05:33:38 +01:00
SETUP_RUN(watchdog_init()); // Reinit watchdog after HAL_get_reset_source call
2018-03-09 00:34:50 +01:00
#endif
#if ENABLED(EXTERNAL_CLOSED_LOOP_CONTROLLER)
2020-06-28 20:48:48 +02:00
SETUP_RUN(closedloop.init());
#endif
2018-09-12 10:49:46 +02:00
#ifdef STARTUP_COMMANDS
2020-03-08 05:33:38 +01:00
SETUP_LOG("STARTUP_COMMANDS");
queue.inject_P(PSTR(STARTUP_COMMANDS));
#endif
2019-09-28 00:06:26 +02:00
#if ENABLED(HOST_PROMPT_SUPPORT)
2020-03-08 05:33:38 +01:00
SETUP_RUN(host_action_prompt_end());
2019-09-28 00:06:26 +02:00
#endif
2020-03-02 19:03:43 +01:00
#if HAS_TRINAMIC_CONFIG && DISABLED(PSU_DEFAULT_OFF)
2020-03-08 05:33:38 +01:00
SETUP_RUN(test_tmc_connection(true, true, true, true));
#endif
2019-02-01 02:10:52 +01:00
#if HAS_DRIVER_SAFE_POWER_PROTECT
SETUP_RUN(stepper_driver_backward_report());
#endif
2020-11-18 08:27:21 +01:00
#if HAS_PRUSA_MMU2
2020-03-08 05:33:38 +01:00
SETUP_RUN(mmu2.init());
#endif
2020-03-07 07:16:33 +01:00
2020-06-16 08:45:27 +02:00
#if ENABLED(IIC_BL24CXX_EEPROM)
BL24CXX::init();
const uint8_t err = BL24CXX::check();
SERIAL_ECHO_TERNARY(err, "BL24CXX Check ", "failed", "succeeded", "!\n");
2020-06-16 08:45:27 +02:00
#endif
#if ENABLED(DWIN_CREALITY_LCD)
Encoder_Configuration();
HMI_Init();
DWIN_JPG_CacheTo1(Language_English);
2020-06-16 08:45:27 +02:00
HMI_StartFrame(true);
DWIN_StatusChanged(GET_TEXT(WELCOME_MSG));
2020-06-16 08:45:27 +02:00
#endif
#if HAS_SERVICE_INTERVALS && DISABLED(DWIN_CREALITY_LCD)
ui.reset_status(true); // Show service messages or keep current status
#endif
2020-03-07 07:16:33 +01:00
#if ENABLED(MAX7219_DEBUG)
2020-03-08 05:33:38 +01:00
SETUP_RUN(max7219.init());
2020-03-07 07:16:33 +01:00
#endif
2020-03-08 05:33:38 +01:00
2020-05-12 02:22:41 +02:00
#if ENABLED(DIRECT_STEPPING)
SETUP_RUN(page_manager.init());
#endif
#if HAS_TFT_LVGL_UI
#if ENABLED(SDSUPPORT)
if (!card.isMounted()) SETUP_RUN(card.mount()); // Mount SD to load graphics and fonts
#endif
SETUP_RUN(tft_lvgl_init());
#endif
#if BOTH(HAS_WIRED_LCD, SHOW_BOOTSCREEN)
const millis_t elapsed = millis() - bootscreen_ms;
#if ENABLED(MARLIN_DEV_MODE)
SERIAL_ECHOLNPAIR("elapsed=", elapsed);
#endif
SETUP_RUN(ui.bootscreen_completion(elapsed));
#endif
#if ENABLED(PASSWORD_ON_STARTUP)
SETUP_RUN(password.lock_machine()); // Will not proceed until correct password provided
#endif
2020-11-15 23:39:58 +01:00
#if BOTH(HAS_LCD_MENU, TOUCH_SCREEN_CALIBRATION) && EITHER(TFT_CLASSIC_UI, TFT_COLOR_UI)
ui.check_touch_calibration();
#endif
2020-03-15 00:47:44 +01:00
marlin_state = MF_RUNNING;
2020-03-08 05:33:38 +01:00
SETUP_LOG("setup() completed.");
2016-09-12 03:21:54 +02:00
}
/**
* The main Marlin program loop
*
* - Call idle() to handle all tasks between G-code commands
* Note that no G-codes from the queue can be executed during idle()
* but many G-codes can be called directly anytime like macros.
* - Check whether SD card auto-start is needed now.
* - Check whether SD print finishing is needed now.
* - Run one G-code command from the immediate or main command queue
* and open up one space. Commands in the main queue may come from sd
* card, host, or by direct injection. The queue will continue to fill
* as long as idle() or manage_inactivity() are being called.
2016-09-12 03:21:54 +02:00
*/
void loop() {
do {
idle();
2018-05-01 08:01:02 +02:00
#if ENABLED(SDSUPPORT)
2019-10-29 22:00:17 +01:00
if (card.flag.abort_sd_printing) abortSDPrinting();
if (marlin_state == MF_SD_COMPLETE) finishSDPrinting();
2019-10-29 22:00:17 +01:00
#endif
queue.advance();
2019-10-29 22:00:17 +01:00
endstops.event_handler();
TERN_(HAS_TFT_LVGL_UI, printer_state_polling());
} while (ENABLED(__AVR__)); // Loop forever on slower (AVR) boards
2016-09-12 03:21:54 +02:00
}