Skip to content
Snippets Groups Projects
MarlinCore.cpp 30.8 KiB
Newer Older
  • Learn to ignore specific revisions
  •  * Marlin 3D Printer Firmware
    
    Scott Lahteine's avatar
    Scott Lahteine committed
     * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
    
     *
     * Based on Sprinter and grbl.
    
     * 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
     * along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
     * About Marlin
     *
     * This firmware is a mashup between Sprinter and grbl.
     *  - https://github.com/kliment/Sprinter
    
     *  - https://github.com/grbl/grbl
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    #include "lcd/ultralcd.h"
    
    #include "module/motion.h"
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    #include "module/planner.h"
    #include "module/stepper.h"
    #include "module/endstops.h"
    
    #include "module/probe.h"
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    #include "module/temperature.h"
    #include "sd/cardreader.h"
    #include "module/configuration_store.h"
    
    #include "module/printcounter.h" // PrintCounter or Stopwatch
    
    #include "feature/closedloop.h"
    
    
    #include "HAL/shared/Delay.h"
    
    
    #include "module/stepper/indirection.h"
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      #include <pins_arduino.h>
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    #include <math.h>
    #include "libs/nozzle.h"
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    #include "gcode/parser.h"
    
    #if ENABLED(TOUCH_BUTTONS)
      #include "feature/touch/xpt2046.h"
    #endif
    
    
    #if ENABLED(HOST_ACTION_COMMANDS)
      #include "feature/host_actions.h"
    #endif
    
    
    #if USE_BEEPER
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      #include "libs/buzzer.h"
    #endif
    
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    #if ENABLED(DIGIPOT_I2C)
      #include "feature/digipot/digipot.h"
    #endif
    
    
    #if ENABLED(MIXING_EXTRUDER)
      #include "feature/mixing.h"
    #endif
    
    
    #if ENABLED(MAX7219_DEBUG)
    
      #include "feature/max7219.h"
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    #if HAS_COLOR_LEDS
      #include "feature/leds/leds.h"
    
    dot-bob's avatar
    dot-bob committed
    #endif
    
    
    #if ENABLED(BLTOUCH)
      #include "feature/bltouch.h"
    #endif
    
    
    #if ENABLED(POLL_JOG)
      #include "feature/joystick.h"
    #endif
    
    
    #if HAS_SERVOS
    
      #include "module/servo.h"
    
    #endif
    
    #if ENABLED(DAC_STEPPER_CURRENT)
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      #include "feature/dac/stepper_dac.h"
    
    #endif
    
    #if ENABLED(EXPERIMENTAL_I2CBUS)
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      #include "feature/twibus.h"
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      TWIBus i2c;
    
    #if ENABLED(I2C_POSITION_ENCODERS)
    
      #include "feature/encoder_i2c.h"
    
    #if HAS_TRINAMIC_CONFIG && DISABLED(PSU_DEFAULT_OFF)
    
      #include "feature/tmc_util.h"
    
    #if HAS_CUTTER
      #include "feature/spindle_laser.h"
    #endif
    
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      CardReader card;
    
    #if ENABLED(G38_PROBE_TARGET)
    
      uint8_t G38_move; // = 0
      bool G38_did_trigger; // = false
    
    #if ENABLED(DELTA)
      #include "module/delta.h"
    #elif IS_SCARA
      #include "module/scara.h"
    #endif
    
    #if HAS_LEVELING
      #include "feature/bedlevel/bedlevel.h"
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    #endif
    
    
    #if BOTH(ADVANCED_PAUSE_FEATURE, PAUSE_PARK_NO_STEPPER_TIMEOUT)
    
      #include "feature/pause.h"
    #endif
    
    #if ENABLED(POWER_LOSS_RECOVERY)
    
      #include "feature/powerloss.h"
    
    #if ENABLED(CANCEL_OBJECTS)
      #include "feature/cancel_object.h"
    #endif
    
    
    #if HAS_FILAMENT_SENSOR
    
      #include "feature/runout.h"
    #endif
    
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    #if ENABLED(TEMP_STAT_LEDS)
      #include "feature/leds/tempstat.h"
    #endif
    
    
    #if HAS_CASE_LIGHT
      #include "feature/caselight.h"
    #endif
    
    
    #if HAS_FANMUX
      #include "feature/fanmux.h"
    #endif
    
    
    #if DO_SWITCH_EXTRUDER || ANY(SWITCHING_NOZZLE, PARKING_EXTRUDER, MAGNETIC_PARKING_EXTRUDER, ELECTROMAGNETIC_SWITCHING_TOOLHEAD, SWITCHING_TOOLHEAD)
    
      #include "module/tool_change.h"
    #endif
    
    
    #if ENABLED(USE_CONTROLLER_FAN)
      #include "feature/controllerfan.h"
    #endif
    
    
    revilor's avatar
    revilor committed
    #if ENABLED(PRUSA_MMU2)
    
      #include "feature/mmu2/mmu2.h"
    
    revilor's avatar
    revilor committed
    #endif
    
    
    #if HAS_L64XX
      #include "libs/L64XX/L64XX_Marlin.h"
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    const char NUL_STR[] PROGMEM = "",
    
               M112_KILL_STR[] PROGMEM = "M112 Shutdown",
    
    Scott Lahteine's avatar
    Scott Lahteine committed
               G28_STR[] PROGMEM = "G28",
    
    Scott Lahteine's avatar
    Scott Lahteine committed
               M21_STR[] PROGMEM = "M21",
               M23_STR[] PROGMEM = "M23 %s",
    
    Scott Lahteine's avatar
    Scott Lahteine committed
               M24_STR[] PROGMEM = "M24",
    
               SP_P_STR[] PROGMEM = " P",
               SP_T_STR[] PROGMEM = " T",
    
    Scott Lahteine's avatar
    Scott Lahteine committed
               SP_X_STR[] PROGMEM = " X",
               SP_Y_STR[] PROGMEM = " Y",
               SP_Z_STR[] PROGMEM = " Z",
    
               SP_E_STR[] PROGMEM = " E",
                  X_LBL[] PROGMEM =  "X:",
                  Y_LBL[] PROGMEM =  "Y:",
                  Z_LBL[] PROGMEM =  "Z:",
                  E_LBL[] PROGMEM =  "E:",
               SP_X_LBL[] PROGMEM = " X:",
               SP_Y_LBL[] PROGMEM = " Y:",
               SP_Z_LBL[] PROGMEM = " Z:",
               SP_E_LBL[] PROGMEM = " E:";
    
    MarlinState marlin_state = MF_INITIALIZING;
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    // For M109 and M190, this flag may be cleared (by M108) to exit the wait loop
    
    bool wait_for_heatup = true;
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    // 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;
    
    // Inactivity shutdown
    
    millis_t max_inactive_time, // = 0
    
             stepper_inactive_time = (DEFAULT_STEPPER_DEACTIVE_TIME) * 1000UL;
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    #if PIN_EXISTS(CHDK)
      extern millis_t chdk_timeout;
    
    #endif
    
    #if ENABLED(I2C_POSITION_ENCODERS)
      I2CPositionEncodersMgr I2CPEM;
    #endif
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    /**
    
     * ***************************************************************************
     * ******************************** FUNCTIONS ********************************
     * ***************************************************************************
    
    void setup_killpin() {
      #if HAS_KILL
        SET_INPUT_PULLUP(KILL_PIN);
    
      #endif
    
    void setup_powerhold() {
      #if HAS_SUICIDE
    
        OUT_WRITE(SUICIDE_PIN, !SUICIDE_PIN_INVERTING);
    
    AnHardt's avatar
    AnHardt committed
      #endif
    
      #if ENABLED(PSU_CONTROL)
    
        powersupply_on = ENABLED(PSU_DEFAULT_OFF);
        if (ENABLED(PSU_DEFAULT_OFF)) PSU_OFF(); else PSU_ON();
    
    /**
     * 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
    
    #endif
    
    #if ENABLED(EXPERIMENTAL_I2CBUS) && I2C_SLAVE_ADDRESS > 0
    
      void i2c_on_receive(int bytes) { // just echo all bytes received to serial
        i2c.receive(bytes);
      }
    
      void i2c_on_request() {          // just send dummy data for now
        i2c.reply("Hello World!\n");
      }
    
    #endif
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    /**
     * Sensitive pin test for M42, M226
     */
    
    
    #include "pins/sensitive_pins.h"
    
    
    bool pin_is_protected(const pin_t pin) {
      static const pin_t sensitive_pins[] PROGMEM = SENSITIVE_PINS;
    
      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;
      }
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      return false;
    }
    
    void protected_pin_err() {
    
      SERIAL_ERROR_MSG(STR_ERR_PROTECTED_PIN);
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    void quickstop_stepper() {
    
      planner.quick_stop();
    
      planner.synchronize();
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      set_current_from_steppers_for_axis(ALL_AXES);
    
      sync_plan_position();
    
    Stanley's avatar
    Stanley committed
    
    
    void enable_e_steppers() {
    
      #define _ENA_E(N) ENABLE_AXIS_E##N();
    
      REPEAT(E_STEPPERS, _ENA_E)
    
    void enable_all_steppers() {
    
      #if ENABLED(AUTO_POWER_CONTROL)
        powerManager.power_on();
      #endif
    
      ENABLE_AXIS_X();
      ENABLE_AXIS_Y();
      ENABLE_AXIS_Z();
    
      enable_e_steppers();
    
    void disable_e_steppers() {
    
      #define _DIS_E(N) DISABLE_AXIS_E##N();
    
      REPEAT(E_STEPPERS, _DIS_E)
    
    void disable_e_stepper(const uint8_t e) {
    
      #define _CASE_DIS_E(N) case N: DISABLE_AXIS_E##N(); break;
    
        REPEAT(EXTRUDERS, _CASE_DIS_E)
    
    void disable_all_steppers() {
    
      DISABLE_AXIS_X();
      DISABLE_AXIS_Y();
      DISABLE_AXIS_Z();
    
      disable_e_steppers();
    }
    
    
    #if ENABLED(G29_RETRY_AND_RECOVER)
    
      void event_probe_failure() {
    
        #ifdef ACTION_ON_G29_FAILURE
          host_action(PSTR(ACTION_ON_G29_FAILURE));
        #endif
    
        #ifdef G29_FAILURE_COMMANDS
    
          gcode.process_subcommands_now_P(PSTR(G29_FAILURE_COMMANDS));
    
        #endif
        #if ENABLED(G29_HALT_ON_FAILURE)
          #ifdef ACTION_ON_CANCEL
            host_action_cancel();
          #endif
    
          kill(GET_TEXT(MSG_LCD_PROBING_FAILED));
    
      void event_probe_recover() {
        #if ENABLED(HOST_PROMPT_SUPPORT)
    
          host_prompt_do(PROMPT_INFO, PSTR("G29 Retrying"), DISMISS_STR);
    
        #endif
        #ifdef ACTION_ON_G29_RECOVER
          host_action(PSTR(ACTION_ON_G29_RECOVER));
        #endif
    
        #ifdef G29_RECOVER_COMMANDS
          gcode.process_subcommands_now_P(PSTR(G29_RECOVER_COMMANDS));
        #endif
    
    #if ENABLED(ADVANCED_PAUSE_FEATURE)
      #include "feature/pause.h"
    #else
      constexpr bool did_pause_print = false;
    #endif
    
    
    /**
     * Printing is active when the print job timer is running
     */
    bool printingIsActive() {
    
      return !did_pause_print && (print_job_timer.isRunning() || IS_SD_PRINTING());
    
    }
    
    /**
     * Printing is paused according to SD or host indicators
     */
    bool printingIsPaused() {
    
      return did_pause_print || print_job_timer.isPaused() || IS_SD_PAUSED();
    }
    
    void startOrResumeJob() {
    
      if (!printingIsPaused()) {
        #if ENABLED(CANCEL_OBJECTS)
          cancelable.reset();
        #endif
        #if ENABLED(LCD_SHOW_E_TOTAL)
          e_move_accumulator = 0;
        #endif
    
        #if BOTH(LCD_SET_PROGRESS_MANUALLY, USE_M73_REMAINING_TIME)
    
          ui.reset_remaining_time();
        #endif
    
      print_job_timer.start();
    
    Scott Lahteine's avatar
    Scott Lahteine committed
    #if ENABLED(SDSUPPORT)
    
    
      inline void abortSDPrinting() {
        card.endFilePrint(
    
    Scott Lahteine's avatar
    Scott Lahteine committed
          #if SD_RESORT
            true
          #endif
        );
        queue.clear();
        quickstop_stepper();
        print_job_timer.stop();
        #if DISABLED(SD_ABORT_NO_COOLDOWN)
          thermalManager.disable_all_heaters();
    
    Scott Lahteine's avatar
    Scott Lahteine committed
        thermalManager.zero_fan_speeds();
        wait_for_heatup = false;
        #if ENABLED(POWER_LOSS_RECOVERY)
    
          recovery.purge();
    
    Scott Lahteine's avatar
    Scott Lahteine committed
        #endif
        #ifdef EVENT_GCODE_SD_STOP
          queue.inject_P(PSTR(EVENT_GCODE_SD_STOP));
        #endif
      }
    
    
      inline void finishSDPrinting() {
    
        bool did_state = true;
        switch (card.sdprinting_done_state) {
    
    
          case 1:
            did_state = print_job_timer.duration() < 60 || queue.enqueue_one_P(PSTR("M31"));
            break;
    
          case 2:
            did_state = queue.enqueue_one_P(PSTR("M77"));
            break;
    
            #if ENABLED(LCD_SET_PROGRESS_MANUALLY)
              ui.set_progress_done();
            #endif
            break;
    
          case 4:                                   // Display "Click to Continue..."
            #if HAS_RESUME_CONTINUE                 // 30 min timeout with LCD, 1 min without
    
              did_state = queue.enqueue_one_P(
                print_job_timer.duration() < 60 ? PSTR("M0Q1P1") : PSTR("M0Q1S" TERN(HAS_LCD_MENU, "1800", "60"))
              );
    
            #if ENABLED(POWER_LOSS_RECOVERY)
              recovery.purge();
            #endif
    
            #if ENABLED(SD_FINISHED_STEPPERRELEASE) && defined(SD_FINISHED_RELEASECOMMAND)
              planner.finish_and_disable();
            #endif
    
            #if ENABLED(SD_REPRINT_LAST_SELECTED_FILE)
              ui.reselect_last_file();
            #endif
    
    
            SERIAL_ECHOLNPGM(STR_FILE_PRINTED);
    
    
          default:
            did_state = false;
            card.sdprinting_done_state = 0;
        }
        if (did_state) ++card.sdprinting_done_state;
      }
    
    #endif // SDSUPPORT
    
     * Minimal management of Marlin's core activities:
    
    Scott Lahteine's avatar
    Scott Lahteine committed
     *  - Check for Filament Runout
     *  - Keep the command buffer full
     *  - Check for maximum inactive time between commands
     *  - Check for maximum inactive time between stepper commands
    
    Scott Lahteine's avatar
    Scott Lahteine committed
     *  - Check if CHDK_PIN needs to go LOW
    
    Scott Lahteine's avatar
    Scott Lahteine committed
     *  - Check for KILL button held down
     *  - Check for HOME 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)
    
     *  - Pulse FET_SAFETY_PIN if it exists
    
    inline void manage_inactivity(const bool ignore_stepper_queue=false) {
    
      #if HAS_FILAMENT_SENSOR
    
      if (queue.length < BUFSIZE) queue.get_available_commands();
    
      const millis_t ms = millis();
    
      if (max_inactive_time && ELAPSED(ms, gcode.previous_move_ms + max_inactive_time)) {
    
        SERIAL_ERROR_START();
    
        SERIAL_ECHOLNPAIR(STR_KILL_INACTIVE_TIME, parser.command_ptr);
    
    
      // Prevent steppers timing-out in the middle of M600
    
      #define STAY_TEST (BOTH(ADVANCED_PAUSE_FEATURE, PAUSE_PARK_NO_STEPPER_TIMEOUT) && did_pause_print)
    
      if (stepper_inactive_time) {
    
        static bool already_shutdown_steppers; // = false
    
        if (planner.has_blocks_queued())
    
          gcode.reset_stepper_timeout();
    
        else if (!STAY_TEST && !ignore_stepper_queue && ELAPSED(ms, gcode.previous_move_ms + stepper_inactive_time)) {
    
          if (!already_shutdown_steppers) {
            already_shutdown_steppers = true;  // L6470 SPI will consume 99% of free time without this
    
            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();
    
            #if HAS_LCD_MENU && ENABLED(AUTO_BED_LEVELING_UBL)
              if (ubl.lcd_map_control) {
                ubl.lcd_map_control = false;
                ui.defer_status_screen(false);
              }
    
        else
          already_shutdown_steppers = false;
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      #if PIN_EXISTS(CHDK) // Check if pin should be set to LOW (after M240 set it HIGH)
    
        if (chdk_timeout && ELAPSED(ms, chdk_timeout)) {
          chdk_timeout = 0;
    
    Scott Lahteine's avatar
    Scott Lahteine committed
          WRITE(CHDK_PIN, LOW);
    
    blddk's avatar
    blddk committed
        }
      #endif
    
    
      #if HAS_KILL
    
        // Check if the kill button was pressed and wait just in case it was an accidental
        // key kill key press
        // -------------------------------------------------------------------------------
    
        static int killCount = 0;   // make the inactivity button a bit less responsive
        const int KILL_DELAY = 750;
    
        if (!READ(KILL_PIN))
    
        else if (killCount > 0)
    
        // Exceeded threshold and we can confirm that it was not accidental
        // KILL the machine
        // ----------------------------------------------------------------
    
        if (killCount >= KILL_DELAY) {
    
          SERIAL_ERROR_MSG(STR_KILL_BUTTON);
    
      #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;
    
    fmalpartida's avatar
    fmalpartida committed
            LCD_MESSAGEPGM(MSG_AUTO_HOME);
    
    Scott Lahteine's avatar
    Scott Lahteine committed
            queue.enqueue_now_P(G28_STR);
    
      #if ENABLED(USE_CONTROLLER_FAN)
    
        controllerfan_update(); // Check if fan should be turned on to cool stepper drivers down
    
      #if ENABLED(AUTO_POWER_CONTROL)
        powerManager.check();
      #endif
    
    
      #if ENABLED(EXTRUDER_RUNOUT_PREVENT)
    
        if (thermalManager.degHotend(active_extruder) > EXTRUDER_RUNOUT_MINTEMP
    
          && ELAPSED(ms, gcode.previous_move_ms + (EXTRUDER_RUNOUT_SECONDS) * 1000UL)
          && !planner.has_blocks_queued()
    
          #if ENABLED(SWITCHING_EXTRUDER)
    
            bool oldstatus;
            switch (active_extruder) {
    
              default: oldstatus = E0_ENABLE_READ(); ENABLE_AXIS_E0(); break;
    
              #if E_STEPPERS > 1
    
                case 2: case 3: oldstatus = E1_ENABLE_READ(); ENABLE_AXIS_E1(); break;
    
                #if E_STEPPERS > 2
    
                  case 4: case 5: oldstatus = E2_ENABLE_READ(); ENABLE_AXIS_E2(); break;
    
    Scott Lahteine's avatar
    Scott Lahteine committed
                  #if E_STEPPERS > 3
                    case 6: case 7: oldstatus = E3_ENABLE_READ(); ENABLE_AXIS_E3(); break;
                  #endif // E_STEPPERS > 3
    
                #endif // E_STEPPERS > 2
              #endif // E_STEPPERS > 1
            }
    
          #else // !SWITCHING_EXTRUDER
    
            switch (active_extruder) {
    
              #define _CASE_EN(N) case N: oldstatus = E##N##_ENABLE_READ(); ENABLE_AXIS_E##N(); break;
    
              REPEAT(E_STEPPERS, _CASE_EN);
    
          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();
    
          #if ENABLED(SWITCHING_EXTRUDER)
    
            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;
    
                #endif // E_STEPPERS > 2
              #endif // E_STEPPERS > 1
            }
          #else // !SWITCHING_EXTRUDER
    
            switch (active_extruder) {
    
              #define _CASE_RESTORE(N) case N: E##N##_ENABLE_WRITE(oldstatus); break;
              REPEAT(E_STEPPERS, _CASE_RESTORE);
    
            }
          #endif // !SWITCHING_EXTRUDER
    
          gcode.reset_stepper_timeout();
    
      #endif // EXTRUDER_RUNOUT_PREVENT
    
      #if ENABLED(DUAL_X_CARRIAGE)
    
        // handle delayed move timeout
    
        if (delayed_move_time && ELAPSED(ms, delayed_move_time + 1000UL) && IsRunning()) {
    
          // travel moves have been received so enact them
          delayed_move_time = 0xFFFFFFFFUL; // force moves to be done
    
          destination = current_position;
    
          prepare_line_to_destination();
    
      #if ENABLED(TEMP_STAT_LEDS)
    
        handle_status_leds();
    
      #if ENABLED(MONITOR_DRIVER_STATUS)
    
        monitor_tmc_drivers();
    
      #if ENABLED(MONITOR_L6470_DRIVER_STATUS)
    
        L64xxManager.monitor_driver();
    
      // 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;
      }
    
    
      #if PIN_EXISTS(FET_SAFETY)
        static millis_t FET_next;
        if (ELAPSED(ms, FET_next)) {
    
          FET_next = ms + FET_SAFETY_DELAY;  // 2µs pulse every FET_SAFETY_DELAY mS
    
          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
     */
    void idle(
    
      #if ENABLED(ADVANCED_PAUSE_FEATURE)
    
        bool no_stepper_sleep/*=false*/
      #endif
    ) {
    
      #if ENABLED(POWER_LOSS_RECOVERY) && PIN_EXISTS(POWER_LOSS)
        recovery.outage();
      #endif
    
        if (endstops.tmc_spi_homing.any
          #if ENABLED(IMPROVE_HOMING_RELIABILITY)
            && ELAPSED(millis(), sg_guard_period)
          #endif
        ) {
    
          for (uint8_t i = 4; i--;) // Read SGT 4 times per idle loop
            if (endstops.tmc_spi_homing_check()) break;
    
      #if ENABLED(MAX7219_DEBUG)
    
      #if ENABLED(HOST_KEEPALIVE_FEATURE)
        gcode.host_keepalive();
      #endif
    
      manage_inactivity(
    
        #if ENABLED(ADVANCED_PAUSE_FEATURE)
    
          no_stepper_sleep
        #endif
      );
    
      thermalManager.manage_heater();
    
      #if ENABLED(PRINTCOUNTER)
        print_job_timer.tick();
      #endif
    
    
      #if USE_BEEPER
    
        buzzer.tick();
      #endif
    
    
      #if ENABLED(I2C_POSITION_ENCODERS)
    
        static millis_t i2cpem_next_update_ms;
    
        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;
          }
    
        if (!gcode.autoreport_paused) {
    
          #if ENABLED(AUTO_REPORT_TEMPERATURES)
            thermalManager.auto_report_temperatures();
          #endif
          #if ENABLED(AUTO_REPORT_SD_STATUS)
            card.auto_report_sd_status();
          #endif
        }
      #endif
    
    
      #if ENABLED(USB_FLASH_DRIVE_SUPPORT)
        Sd2Card::idle();
      #endif
    
    revilor's avatar
    revilor committed
    
      #if ENABLED(PRUSA_MMU2)
    
    Scott Lahteine's avatar
    Scott Lahteine committed
        mmu2.mmu_loop();
    
    revilor's avatar
    revilor committed
      #endif
    
    
      #if ENABLED(POLL_JOG)
        joystick.inject_jog_moves();
      #endif
    
    }
    
    /**
     * Kill all activity and lock the machine.
     * After this the machine will need to be reset.
     */
    
    void kill(PGM_P const lcd_error/*=nullptr*/, PGM_P const lcd_component/*=nullptr*/, const bool steppers_off/*=false*/) {
    
    rafaljot's avatar
    rafaljot committed
      thermalManager.disable_all_heaters();
    
      SERIAL_ERROR_MSG(STR_ERR_KILLED);
    
      #if HAS_DISPLAY
    
        ui.kill_screen(lcd_error ?: GET_TEXT(MSG_KILLED), lcd_component ?: NUL_STR);
    
        UNUSED(lcd_error);
        UNUSED(lcd_component);
    
      #ifdef ACTION_ON_KILL
    
        host_action_kill();
    
    Ben Lye's avatar
    Ben Lye committed
      #endif
    
      minkill(steppers_off);
    
    void minkill(const bool steppers_off/*=false*/) {
    
      // Wait a short time (allows messages to get out before shutting down.
    
      for (int i = 1000; i--;) DELAY_US(600);
    
    
      cli(); // Stop interrupts
    
      // Wait to ensure all interrupts stopped
    
      for (int i = 1000; i--;) DELAY_US(250);
    
      // Reiterate heaters off
      thermalManager.disable_all_heaters();
    
      // Power off all steppers (for M112) or just the E steppers
      steppers_off ? disable_all_steppers() : disable_e_steppers();
    
      #if ENABLED(PSU_CONTROL)
    
    Phr3d13's avatar
    Phr3d13 committed
      #if HAS_SUICIDE
        suicide();
      #endif
    
    
      #if HAS_KILL
    
        // Wait for kill to be released
    
        while (!READ(KILL_PIN)) watchdog_refresh();
    
    
        // Wait for kill to be pressed
    
        while (READ(KILL_PIN)) watchdog_refresh();
    
        void (*resetFunc)() = 0;  // Declare resetFunc() at address 0
    
    Scott Lahteine's avatar
    Scott Lahteine committed
        resetFunc();                  // Jump to address 0
    
        for (;;) watchdog_refresh(); // Wait for reset
    
    /**
     * Turn off heaters and stop the print in progress
     * After a stop the machine may be resumed with M999
     */
    
    void stop() {
    
      thermalManager.disable_all_heaters(); // 'unpause' taken care of in here
    
    
      #if ENABLED(PROBING_FANS_OFF)
    
        if (thermalManager.fans_paused) thermalManager.set_fans_paused(false); // put things back the way they were
    
        SERIAL_ERROR_MSG(STR_ERR_STOPPED);
    
        LCD_MESSAGEPGM(MSG_STOPPED);
    
        safe_delay(350);       // allow enough time for messages to get out before stopping
    
        marlin_state = MF_STOPPED;
    
    /**
     * Marlin entry-point: Set up before the program loop
     *  - Set up the kill pin, filament runout, power hold
     *  - Start the serial port
     *  - Print startup messages and diagnostics
     *  - Get EEPROM or default settings
     *  - Initialize managers for:
     *    • temperature
     *    • planner
     *    • watchdog
     *    • stepper
     *    • photo pin
     *    • servos
     *    • LCD controller
     *    • Digipot I2C
     *    • Z probe sled
     *    • status LEDs
    
    Scott Lahteine's avatar
    Scott Lahteine committed
     *    • Max7219
    
      #if HAS_L64XX
        L64xxManager.init();  // Set up SPI, init drivers
    
      #if ENABLED(SMART_EFFECTOR) && PIN_EXISTS(SMART_EFFECTOR_MOD)
        OUT_WRITE(SMART_EFFECTOR_MOD_PIN, LOW);   // Put Smart Effector into NORMAL mode
      #endif
    
    
      #if ENABLED(DISABLE_DEBUG)
        // Disable any hardware debug to free up pins for IO
        #ifdef JTAGSWD_DISABLE
          JTAGSWD_DISABLE();
        #elif defined(JTAG_DISABLE)
          JTAG_DISABLE();
        #else
          #error "DISABLE_DEBUG is not supported for the selected MCU/Board"
        #endif
      #elif ENABLED(DISABLE_JTAG)
    
        // Disable JTAG to free up pins for IO
        #ifdef JTAG_DISABLE
          JTAG_DISABLE();
        #else
          #error "DISABLE_JTAG is not supported for the selected MCU/Board"
        #endif
    
      #if HAS_FILAMENT_SENSOR
    
        runout.setup();
    
      #if ENABLED(POWER_LOSS_RECOVERY)
        recovery.setup();
      #endif
    
    
      setup_killpin();
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      #if HAS_TMC220x
    
        tmc_serial_begin();
    
      #endif
    
      setup_powerhold();
    
      #if HAS_STEPPER_RESET
        disableStepperDrivers();
      #endif
    
    
    Thomas Moore's avatar
    Thomas Moore committed
      #if NUM_SERIAL > 0
        MYSERIAL0.begin(BAUDRATE);
        uint32_t serial_connect_timeout = millis() + 1000UL;
    
        while (!MYSERIAL0 && PENDING(millis(), serial_connect_timeout)) { /*nada*/ }
    
    Thomas Moore's avatar
    Thomas Moore committed
        #if NUM_SERIAL > 1
    
          MYSERIAL1.begin(BAUDRATE);
    
    Thomas Moore's avatar
    Thomas Moore committed
          serial_connect_timeout = millis() + 1000UL;
    
          while (!MYSERIAL1 && PENDING(millis(), serial_connect_timeout)) { /*nada*/ }
    
    Thomas Moore's avatar
    Thomas Moore committed
        #endif
      #endif
    
    
      SERIAL_ECHOLNPGM("start");
    
      SERIAL_ECHO_START();
    
        #if DISABLED(TMC_USE_SW_SPI)
          SPI.begin();
        #endif
    
        tmc_init_cs_pins();
      #endif
    
    
      #ifdef BOARD_INIT
        BOARD_INIT();
      #endif
    
    
      // Check startup - does nothing if bootloader sets MCUSR to 0
    
      byte mcu = HAL_get_reset_source();
    
      if (mcu &  1) SERIAL_ECHOLNPGM(STR_POWERUP);
      if (mcu &  2) SERIAL_ECHOLNPGM(STR_EXTERNAL_RESET);
      if (mcu &  4) SERIAL_ECHOLNPGM(STR_BROWNOUT_RESET);
      if (mcu &  8) SERIAL_ECHOLNPGM(STR_WATCHDOG_RESET);
      if (mcu & 32) SERIAL_ECHOLNPGM(STR_SOFTWARE_RESET);
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      serialprintPGM(GET_TEXT(MSG_MARLIN));
    
      SERIAL_CHAR(' ');
      SERIAL_ECHOLNPGM(SHORT_BUILD_VERSION);
    
      SERIAL_EOL();
    
      #if defined(STRING_DISTRIBUTION_DATE) && defined(STRING_CONFIG_H_AUTHOR)
    
        SERIAL_ECHO_MSG(
    
          STR_CONFIGURATION_VER
    
          STRING_DISTRIBUTION_DATE
    
          STR_AUTHOR STRING_CONFIG_H_AUTHOR
    
        SERIAL_ECHO_MSG("Compiled: " __DATE__);
    
      #endif
    
      SERIAL_ECHO_START();
    
      SERIAL_ECHOLNPAIR(STR_FREE_MEMORY, freeMemory(), STR_PLANNER_BUFFER_BYTES, (int)sizeof(block_t) * (BLOCK_BUFFER_SIZE));
    
      // UI must be initialized before EEPROM
      // (because EEPROM code calls the UI).
    
      #if ENABLED(MARLIN_DEV_MODE)
        auto log_current_ms = [&](PGM_P const msg) {
          SERIAL_ECHO_START();
          SERIAL_CHAR('['); SERIAL_ECHO(millis()); SERIAL_ECHO("] ");
          serialprintPGM(msg);
          SERIAL_EOL();
        };
        #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)
    
    
      // Set up LEDs early
      #if HAS_COLOR_LEDS
    
        SETUP_RUN(leds.setup());
    
      SETUP_RUN(ui.init());
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      SETUP_RUN(ui.reset_status());       // Load welcome message early. (Retained if no errors exist.)
    
      #if HAS_SPI_LCD && ENABLED(SHOW_BOOTSCREEN)
    
        SETUP_RUN(ui.show_bootscreen());
    
      #if ENABLED(SDSUPPORT)
    
        SETUP_RUN(card.mount());          // Mount the SD card before settings.first_load
      #endif
    
      SETUP_RUN(settings.first_load());   // Load data from EEPROM if available (or use defaults)
                                          // This also updates variables in the planner, elsewhere