2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2016-03-24 18:01:20 +00:00
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 14:00:57 +00:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2015-05-17 08:44:53 +00:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 04:57:50 +00:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2015-05-17 08:44:53 +00:00
|
|
|
*
|
|
|
|
* 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/>.
|
2016-03-24 18:01:20 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2015-05-17 08:44:53 +00:00
|
|
|
* About Marlin
|
|
|
|
*
|
|
|
|
* This firmware is a mashup between Sprinter and grbl.
|
|
|
|
* - https://github.com/kliment/Sprinter
|
2018-02-06 08:28:18 +00:00
|
|
|
* - https://github.com/grbl/grbl
|
2015-04-14 00:17:36 +00:00
|
|
|
*/
|
2012-11-06 11:06:41 +00:00
|
|
|
|
2020-01-03 01:01:38 +00:00
|
|
|
#include "MarlinCore.h"
|
2016-11-19 03:54:38 +00:00
|
|
|
|
2020-04-25 21:32:08 +00:00
|
|
|
#include "HAL/shared/Delay.h"
|
|
|
|
#include "HAL/shared/esp_wifi.h"
|
|
|
|
|
|
|
|
#ifdef ARDUINO
|
|
|
|
#include <pins_arduino.h>
|
|
|
|
#endif
|
|
|
|
#include <math.h>
|
|
|
|
|
2019-03-29 19:07:43 +00:00
|
|
|
#include "core/utility.h"
|
2017-09-06 11:28:33 +00:00
|
|
|
#include "lcd/ultralcd.h"
|
2017-09-08 03:33:16 +00:00
|
|
|
#include "module/motion.h"
|
2017-09-06 11:28:33 +00:00
|
|
|
#include "module/planner.h"
|
|
|
|
#include "module/stepper.h"
|
|
|
|
#include "module/endstops.h"
|
2017-09-08 20:35:25 +00:00
|
|
|
#include "module/probe.h"
|
2017-09-06 11:28:33 +00:00
|
|
|
#include "module/temperature.h"
|
|
|
|
#include "sd/cardreader.h"
|
|
|
|
#include "module/configuration_store.h"
|
2017-09-09 05:18:43 +00:00
|
|
|
#include "module/printcounter.h" // PrintCounter or Stopwatch
|
2018-09-08 17:08:31 +00:00
|
|
|
#include "feature/closedloop.h"
|
|
|
|
|
2019-09-01 00:44:45 +00:00
|
|
|
#include "module/stepper/indirection.h"
|
2019-01-24 01:06:54 +00:00
|
|
|
|
2017-09-06 11:28:33 +00:00
|
|
|
#include "libs/nozzle.h"
|
2017-09-08 03:33:16 +00:00
|
|
|
|
|
|
|
#include "gcode/gcode.h"
|
2017-09-06 11:28:33 +00:00
|
|
|
#include "gcode/parser.h"
|
2017-09-08 03:33:16 +00:00
|
|
|
#include "gcode/queue.h"
|
2016-11-19 03:54:38 +00:00
|
|
|
|
2020-07-01 06:30:24 +00:00
|
|
|
#if ENABLED(TFT_LVGL_UI)
|
2020-06-16 02:05:33 +00:00
|
|
|
#include "lvgl.h"
|
2020-06-24 19:54:39 +00:00
|
|
|
#include "lcd/extui/lib/mks_ui/tft_lvgl_configuration.h"
|
|
|
|
#include "lcd/extui/lib/mks_ui/draw_ui.h"
|
2020-06-16 02:05:33 +00:00
|
|
|
#endif
|
|
|
|
|
2020-06-16 06:45:27 +00:00
|
|
|
#if ENABLED(DWIN_CREALITY_LCD)
|
|
|
|
#include "lcd/dwin/dwin.h"
|
|
|
|
#include "lcd/dwin/dwin_lcd.h"
|
|
|
|
#include "lcd/dwin/rotary_encoder.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(IIC_BL24CXX_EEPROM)
|
|
|
|
#include "lcd/dwin/eeprom_BL24CXX.h"
|
|
|
|
#endif
|
|
|
|
|
2020-05-12 00:22:41 +00:00
|
|
|
#if ENABLED(DIRECT_STEPPING)
|
|
|
|
#include "feature/direct_stepping.h"
|
|
|
|
#endif
|
|
|
|
|
2019-07-14 23:16:26 +00:00
|
|
|
#if ENABLED(TOUCH_BUTTONS)
|
|
|
|
#include "feature/touch/xpt2046.h"
|
|
|
|
#endif
|
|
|
|
|
2019-02-12 21:55:47 +00:00
|
|
|
#if ENABLED(HOST_ACTION_COMMANDS)
|
|
|
|
#include "feature/host_actions.h"
|
|
|
|
#endif
|
|
|
|
|
2019-08-20 07:01:37 +00:00
|
|
|
#if USE_BEEPER
|
2017-09-14 20:33:07 +00:00
|
|
|
#include "libs/buzzer.h"
|
|
|
|
#endif
|
|
|
|
|
2020-04-19 03:56:23 +00:00
|
|
|
#if HAS_I2C_DIGIPOT
|
2017-09-17 23:45:21 +00:00
|
|
|
#include "feature/digipot/digipot.h"
|
|
|
|
#endif
|
|
|
|
|
2017-09-18 05:06:16 +00:00
|
|
|
#if ENABLED(MIXING_EXTRUDER)
|
|
|
|
#include "feature/mixing.h"
|
|
|
|
#endif
|
|
|
|
|
2017-08-25 22:03:07 +00:00
|
|
|
#if ENABLED(MAX7219_DEBUG)
|
2020-03-13 21:29:29 +00:00
|
|
|
#include "feature/max7219.h"
|
2017-08-25 22:03:07 +00:00
|
|
|
#endif
|
|
|
|
|
2017-09-08 19:47:47 +00:00
|
|
|
#if HAS_COLOR_LEDS
|
|
|
|
#include "feature/leds/leds.h"
|
2017-06-10 06:02:15 +00:00
|
|
|
#endif
|
|
|
|
|
2019-03-17 10:57:25 +00:00
|
|
|
#if ENABLED(BLTOUCH)
|
|
|
|
#include "feature/bltouch.h"
|
|
|
|
#endif
|
|
|
|
|
2019-09-08 05:55:34 +00:00
|
|
|
#if ENABLED(POLL_JOG)
|
|
|
|
#include "feature/joystick.h"
|
|
|
|
#endif
|
|
|
|
|
2016-11-19 03:54:38 +00:00
|
|
|
#if HAS_SERVOS
|
2017-11-19 19:39:46 +00:00
|
|
|
#include "module/servo.h"
|
2016-11-19 03:54:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(DAC_STEPPER_CURRENT)
|
2017-09-06 11:28:33 +00:00
|
|
|
#include "feature/dac/stepper_dac.h"
|
2016-11-19 03:54:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(EXPERIMENTAL_I2CBUS)
|
2017-09-06 11:28:33 +00:00
|
|
|
#include "feature/twibus.h"
|
2017-09-17 07:49:13 +00:00
|
|
|
TWIBus i2c;
|
2016-11-19 03:54:38 +00:00
|
|
|
#endif
|
|
|
|
|
2017-06-09 12:06:23 +00:00
|
|
|
#if ENABLED(I2C_POSITION_ENCODERS)
|
2020-03-13 21:29:29 +00:00
|
|
|
#include "feature/encoder_i2c.h"
|
2017-06-09 12:06:23 +00:00
|
|
|
#endif
|
|
|
|
|
2020-03-02 18:03:43 +00:00
|
|
|
#if HAS_TRINAMIC_CONFIG && DISABLED(PSU_DEFAULT_OFF)
|
2017-12-15 21:03:14 +00:00
|
|
|
#include "feature/tmc_util.h"
|
2017-09-17 23:34:04 +00:00
|
|
|
#endif
|
|
|
|
|
2019-06-28 04:06:49 +00:00
|
|
|
#if HAS_CUTTER
|
|
|
|
#include "feature/spindle_laser.h"
|
|
|
|
#endif
|
|
|
|
|
2015-07-31 05:24:43 +00:00
|
|
|
#if ENABLED(SDSUPPORT)
|
2015-01-30 02:52:21 +00:00
|
|
|
CardReader card;
|
2012-11-06 11:06:41 +00:00
|
|
|
#endif
|
2015-01-30 02:52:21 +00:00
|
|
|
|
2016-09-29 20:06:01 +00:00
|
|
|
#if ENABLED(G38_PROBE_TARGET)
|
2019-03-10 22:22:09 +00:00
|
|
|
uint8_t G38_move; // = 0
|
|
|
|
bool G38_did_trigger; // = false
|
2016-09-19 19:17:10 +00:00
|
|
|
#endif
|
|
|
|
|
2017-09-08 20:35:25 +00: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 15:15:54 +00:00
|
|
|
#endif
|
|
|
|
|
2019-03-17 04:43:06 +00:00
|
|
|
#if BOTH(ADVANCED_PAUSE_FEATURE, PAUSE_PARK_NO_STEPPER_TIMEOUT)
|
2017-09-16 07:13:07 +00:00
|
|
|
#include "feature/pause.h"
|
|
|
|
#endif
|
2017-09-09 05:18:43 +00:00
|
|
|
|
2018-04-22 00:41:26 +00:00
|
|
|
#if ENABLED(POWER_LOSS_RECOVERY)
|
2020-03-13 21:29:29 +00:00
|
|
|
#include "feature/powerloss.h"
|
2018-04-22 00:41:26 +00:00
|
|
|
#endif
|
|
|
|
|
2019-10-25 17:26:41 +00:00
|
|
|
#if ENABLED(CANCEL_OBJECTS)
|
|
|
|
#include "feature/cancel_object.h"
|
|
|
|
#endif
|
|
|
|
|
2019-02-13 02:08:34 +00:00
|
|
|
#if HAS_FILAMENT_SENSOR
|
2017-10-10 07:35:20 +00:00
|
|
|
#include "feature/runout.h"
|
|
|
|
#endif
|
|
|
|
|
2020-05-18 05:50:35 +00:00
|
|
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
|
|
|
#include "feature/hotend_idle.h"
|
|
|
|
#endif
|
|
|
|
|
2017-09-16 10:09:34 +00:00
|
|
|
#if ENABLED(TEMP_STAT_LEDS)
|
|
|
|
#include "feature/leds/tempstat.h"
|
|
|
|
#endif
|
|
|
|
|
2017-09-17 23:56:29 +00:00
|
|
|
#if HAS_CASE_LIGHT
|
|
|
|
#include "feature/caselight.h"
|
|
|
|
#endif
|
|
|
|
|
2017-11-05 02:01:41 +00:00
|
|
|
#if HAS_FANMUX
|
|
|
|
#include "feature/fanmux.h"
|
|
|
|
#endif
|
|
|
|
|
2020-03-08 21:13:41 +00:00
|
|
|
#if DO_SWITCH_EXTRUDER || ANY(SWITCHING_NOZZLE, PARKING_EXTRUDER, MAGNETIC_PARKING_EXTRUDER, ELECTROMAGNETIC_SWITCHING_TOOLHEAD, SWITCHING_TOOLHEAD)
|
2017-09-18 06:05:44 +00:00
|
|
|
#include "module/tool_change.h"
|
|
|
|
#endif
|
|
|
|
|
2017-09-18 06:44:59 +00:00
|
|
|
#if ENABLED(USE_CONTROLLER_FAN)
|
|
|
|
#include "feature/controllerfan.h"
|
|
|
|
#endif
|
|
|
|
|
2019-02-01 01:10:52 +00:00
|
|
|
#if ENABLED(PRUSA_MMU2)
|
2020-03-13 21:29:29 +00:00
|
|
|
#include "feature/mmu2/mmu2.h"
|
2019-02-01 01:10:52 +00:00
|
|
|
#endif
|
|
|
|
|
2020-01-14 00:47:30 +00:00
|
|
|
#if HAS_L64XX
|
|
|
|
#include "libs/L64XX/L64XX_Marlin.h"
|
2019-01-24 01:06:54 +00:00
|
|
|
#endif
|
|
|
|
|
2020-05-06 04:34:04 +00:00
|
|
|
PGMSTR(NUL_STR, "");
|
|
|
|
PGMSTR(M112_KILL_STR, "M112 Shutdown");
|
|
|
|
PGMSTR(G28_STR, "G28");
|
|
|
|
PGMSTR(M21_STR, "M21");
|
|
|
|
PGMSTR(M23_STR, "M23 %s");
|
|
|
|
PGMSTR(M24_STR, "M24");
|
|
|
|
PGMSTR(SP_P_STR, " P"); PGMSTR(SP_T_STR, " T");
|
|
|
|
PGMSTR(X_STR, "X"); PGMSTR(Y_STR, "Y"); PGMSTR(Z_STR, "Z"); PGMSTR(E_STR, "E");
|
|
|
|
PGMSTR(X_LBL, "X:"); PGMSTR(Y_LBL, "Y:"); PGMSTR(Z_LBL, "Z:"); PGMSTR(E_LBL, "E:");
|
2020-06-28 04:27:28 +00:00
|
|
|
PGMSTR(SP_A_STR, " A"); PGMSTR(SP_B_STR, " B"); PGMSTR(SP_C_STR, " C");
|
2020-05-06 04:34:04 +00:00
|
|
|
PGMSTR(SP_X_STR, " X"); PGMSTR(SP_Y_STR, " Y"); PGMSTR(SP_Z_STR, " Z"); PGMSTR(SP_E_STR, " E");
|
|
|
|
PGMSTR(SP_X_LBL, " X:"); PGMSTR(SP_Y_LBL, " Y:"); PGMSTR(SP_Z_LBL, " Z:"); PGMSTR(SP_E_LBL, " E:");
|
2019-11-02 04:51:25 +00:00
|
|
|
|
2020-03-14 23:47:44 +00:00
|
|
|
MarlinState marlin_state = MF_INITIALIZING;
|
2015-04-08 07:56:19 +00:00
|
|
|
|
2016-10-07 03:06:33 +00:00
|
|
|
// For M109 and M190, this flag may be cleared (by M108) to exit the wait loop
|
2019-03-10 14:13:54 +00:00
|
|
|
bool wait_for_heatup = true;
|
2015-04-08 07:56:19 +00:00
|
|
|
|
2016-10-07 03:06:33 +00:00
|
|
|
// For M0/M1, this flag may be cleared (by M108) to exit the wait-for-user loop
|
2017-04-09 16:12:08 +00:00
|
|
|
#if HAS_RESUME_CONTINUE
|
2019-03-09 20:13:50 +00:00
|
|
|
bool wait_for_user; // = false;
|
2020-03-28 08:18:53 +00:00
|
|
|
|
|
|
|
void wait_for_user_response(millis_t ms/*=0*/, const bool no_sleep/*=false*/) {
|
2020-04-25 17:31:21 +00:00
|
|
|
TERN(ADVANCED_PAUSE_FEATURE,,UNUSED(no_sleep));
|
2020-03-28 08:18:53 +00:00
|
|
|
KEEPALIVE_STATE(PAUSED_FOR_USER);
|
|
|
|
wait_for_user = true;
|
|
|
|
if (ms) ms += millis(); // expire time
|
2020-04-02 06:22:48 +00:00
|
|
|
while (wait_for_user && !(ms && ELAPSED(millis(), ms)))
|
|
|
|
idle(TERN_(ADVANCED_PAUSE_FEATURE, no_sleep));
|
2020-03-28 08:18:53 +00:00
|
|
|
wait_for_user = false;
|
|
|
|
}
|
|
|
|
|
2016-09-12 01:51:53 +00:00
|
|
|
#endif
|
|
|
|
|
2018-11-05 07:08:40 +00:00
|
|
|
#if PIN_EXISTS(CHDK)
|
|
|
|
extern millis_t chdk_timeout;
|
2017-09-08 20:35:25 +00:00
|
|
|
#endif
|
2016-10-02 06:48:17 +00:00
|
|
|
|
2017-09-08 20:35:25 +00:00
|
|
|
#if ENABLED(I2C_POSITION_ENCODERS)
|
|
|
|
I2CPositionEncodersMgr I2CPEM;
|
|
|
|
#endif
|
2017-04-15 03:44:08 +00:00
|
|
|
|
2016-09-15 18:22:23 +00:00
|
|
|
/**
|
2017-09-08 20:35:25 +00:00
|
|
|
* ***************************************************************************
|
|
|
|
* ******************************** FUNCTIONS ********************************
|
|
|
|
* ***************************************************************************
|
2016-09-15 18:22:23 +00:00
|
|
|
*/
|
|
|
|
|
2017-09-08 20:35:25 +00:00
|
|
|
void setup_killpin() {
|
|
|
|
#if HAS_KILL
|
2020-05-05 08:31:03 +00:00
|
|
|
#if KILL_PIN_STATE
|
|
|
|
SET_INPUT_PULLDOWN(KILL_PIN);
|
|
|
|
#else
|
|
|
|
SET_INPUT_PULLUP(KILL_PIN);
|
|
|
|
#endif
|
2016-09-15 20:43:06 +00:00
|
|
|
#endif
|
2017-09-08 20:35:25 +00:00
|
|
|
}
|
2016-07-08 13:59:33 +00:00
|
|
|
|
2017-09-08 20:35:25 +00:00
|
|
|
void setup_powerhold() {
|
|
|
|
#if HAS_SUICIDE
|
2019-10-24 19:07:28 +00:00
|
|
|
OUT_WRITE(SUICIDE_PIN, !SUICIDE_PIN_INVERTING);
|
2016-07-08 13:59:33 +00:00
|
|
|
#endif
|
2019-10-22 20:43:37 +00:00
|
|
|
#if ENABLED(PSU_CONTROL)
|
2020-03-08 04:20:41 +00:00
|
|
|
powersupply_on = ENABLED(PSU_DEFAULT_OFF);
|
|
|
|
if (ENABLED(PSU_DEFAULT_OFF)) PSU_OFF(); else PSU_ON();
|
2017-04-15 03:44:08 +00:00
|
|
|
#endif
|
2017-09-08 20:35:25 +00:00
|
|
|
}
|
2017-04-15 03:44:08 +00:00
|
|
|
|
2017-09-08 20:35:25 +00:00
|
|
|
/**
|
|
|
|
* Stepper Reset (RigidBoard, et.al.)
|
|
|
|
*/
|
|
|
|
#if HAS_STEPPER_RESET
|
2019-02-20 11:28:40 +00:00
|
|
|
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 20:35:25 +00:00
|
|
|
#endif
|
2016-08-28 00:53:02 +00:00
|
|
|
|
2017-09-08 20:35:25 +00:00
|
|
|
#if ENABLED(EXPERIMENTAL_I2CBUS) && I2C_SLAVE_ADDRESS > 0
|
2015-04-29 02:10:07 +00:00
|
|
|
|
2017-09-08 20:35:25 +00:00
|
|
|
void i2c_on_receive(int bytes) { // just echo all bytes received to serial
|
|
|
|
i2c.receive(bytes);
|
|
|
|
}
|
2017-04-15 03:44:08 +00:00
|
|
|
|
2017-09-08 20:35:25 +00:00
|
|
|
void i2c_on_request() { // just send dummy data for now
|
|
|
|
i2c.reply("Hello World!\n");
|
|
|
|
}
|
2015-07-09 23:57:44 +00:00
|
|
|
|
2017-09-08 20:35:25 +00:00
|
|
|
#endif
|
2014-06-23 15:09:57 +00:00
|
|
|
|
2017-09-06 11:28:33 +00:00
|
|
|
/**
|
|
|
|
* Sensitive pin test for M42, M226
|
|
|
|
*/
|
2018-10-11 05:58:41 +00:00
|
|
|
|
|
|
|
#include "pins/sensitive_pins.h"
|
|
|
|
|
2020-04-28 13:30:52 +00:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wnarrowing"
|
|
|
|
|
2017-10-26 18:37:26 +00:00
|
|
|
bool pin_is_protected(const pin_t pin) {
|
|
|
|
static const pin_t sensitive_pins[] PROGMEM = SENSITIVE_PINS;
|
2020-03-14 04:18:16 +00:00
|
|
|
LOOP_L_N(i, COUNT(sensitive_pins)) {
|
2017-10-26 18:37:26 +00:00
|
|
|
pin_t sensitive_pin;
|
|
|
|
memcpy_P(&sensitive_pin, &sensitive_pins[i], sizeof(pin_t));
|
|
|
|
if (pin == sensitive_pin) return true;
|
|
|
|
}
|
2017-09-06 11:28:33 +00:00
|
|
|
return false;
|
|
|
|
}
|
2016-07-19 15:24:44 +00:00
|
|
|
|
2020-04-28 13:30:52 +00:00
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
|
2018-06-10 22:45:39 +00:00
|
|
|
void protected_pin_err() {
|
2020-02-26 09:02:03 +00:00
|
|
|
SERIAL_ERROR_MSG(STR_ERR_PROTECTED_PIN);
|
2018-06-10 22:45:39 +00:00
|
|
|
}
|
|
|
|
|
2017-09-06 11:28:33 +00:00
|
|
|
void quickstop_stepper() {
|
2018-05-09 05:17:53 +00:00
|
|
|
planner.quick_stop();
|
2018-05-12 06:38:02 +00:00
|
|
|
planner.synchronize();
|
2017-09-06 11:28:33 +00:00
|
|
|
set_current_from_steppers_for_axis(ALL_AXES);
|
2018-09-17 02:24:15 +00:00
|
|
|
sync_plan_position();
|
2017-09-06 11:28:33 +00:00
|
|
|
}
|
2016-10-05 19:34:07 +00:00
|
|
|
|
2019-10-08 00:44:33 +00:00
|
|
|
void enable_e_steppers() {
|
2020-01-30 09:24:23 +00:00
|
|
|
#define _ENA_E(N) ENABLE_AXIS_E##N();
|
2019-11-09 23:59:04 +00:00
|
|
|
REPEAT(E_STEPPERS, _ENA_E)
|
2019-10-08 00:44:33 +00:00
|
|
|
}
|
|
|
|
|
2015-04-04 02:25:22 +00:00
|
|
|
void enable_all_steppers() {
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(AUTO_POWER_CONTROL, powerManager.power_on());
|
2020-01-30 09:24:23 +00:00
|
|
|
ENABLE_AXIS_X();
|
|
|
|
ENABLE_AXIS_Y();
|
|
|
|
ENABLE_AXIS_Z();
|
2019-10-08 00:44:33 +00:00
|
|
|
enable_e_steppers();
|
2019-08-15 02:05:15 +00:00
|
|
|
}
|
|
|
|
|
2017-03-18 02:12:19 +00:00
|
|
|
void disable_e_steppers() {
|
2020-01-30 09:24:23 +00:00
|
|
|
#define _DIS_E(N) DISABLE_AXIS_E##N();
|
2019-11-09 23:59:04 +00:00
|
|
|
REPEAT(E_STEPPERS, _DIS_E)
|
2015-04-03 22:31:35 +00:00
|
|
|
}
|
|
|
|
|
2018-01-04 11:06:34 +00:00
|
|
|
void disable_e_stepper(const uint8_t e) {
|
2020-01-30 09:24:23 +00:00
|
|
|
#define _CASE_DIS_E(N) case N: DISABLE_AXIS_E##N(); break;
|
2018-01-04 11:06:34 +00:00
|
|
|
switch (e) {
|
2019-11-09 23:59:04 +00:00
|
|
|
REPEAT(EXTRUDERS, _CASE_DIS_E)
|
2018-01-04 11:06:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-18 02:12:19 +00:00
|
|
|
void disable_all_steppers() {
|
2020-01-30 09:24:23 +00:00
|
|
|
DISABLE_AXIS_X();
|
|
|
|
DISABLE_AXIS_Y();
|
|
|
|
DISABLE_AXIS_Z();
|
2017-03-18 02:12:19 +00:00
|
|
|
disable_e_steppers();
|
|
|
|
}
|
|
|
|
|
2019-02-12 21:55:47 +00:00
|
|
|
#if ENABLED(G29_RETRY_AND_RECOVER)
|
|
|
|
|
|
|
|
void event_probe_failure() {
|
2019-02-19 20:45:03 +00:00
|
|
|
#ifdef ACTION_ON_G29_FAILURE
|
|
|
|
host_action(PSTR(ACTION_ON_G29_FAILURE));
|
|
|
|
#endif
|
2019-02-12 21:55:47 +00:00
|
|
|
#ifdef G29_FAILURE_COMMANDS
|
2019-02-14 02:39:38 +00:00
|
|
|
gcode.process_subcommands_now_P(PSTR(G29_FAILURE_COMMANDS));
|
2019-02-12 21:55:47 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(G29_HALT_ON_FAILURE)
|
|
|
|
#ifdef ACTION_ON_CANCEL
|
|
|
|
host_action_cancel();
|
|
|
|
#endif
|
2019-10-10 00:46:10 +00:00
|
|
|
kill(GET_TEXT(MSG_LCD_PROBING_FAILED));
|
2019-02-12 21:55:47 +00:00
|
|
|
#endif
|
|
|
|
}
|
2019-01-28 04:43:13 +00:00
|
|
|
|
2019-02-12 21:55:47 +00:00
|
|
|
void event_probe_recover() {
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(HOST_PROMPT_SUPPORT, host_prompt_do(PROMPT_INFO, PSTR("G29 Retrying"), DISMISS_STR));
|
2019-02-12 21:55:47 +00:00
|
|
|
#ifdef ACTION_ON_G29_RECOVER
|
|
|
|
host_action(PSTR(ACTION_ON_G29_RECOVER));
|
|
|
|
#endif
|
2019-02-19 20:45:03 +00:00
|
|
|
#ifdef G29_RECOVER_COMMANDS
|
|
|
|
gcode.process_subcommands_now_P(PSTR(G29_RECOVER_COMMANDS));
|
|
|
|
#endif
|
2019-02-12 21:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2019-01-28 04:43:13 +00:00
|
|
|
|
2019-10-24 20:35:40 +00:00
|
|
|
#if ENABLED(ADVANCED_PAUSE_FEATURE)
|
|
|
|
#include "feature/pause.h"
|
|
|
|
#else
|
|
|
|
constexpr bool did_pause_print = false;
|
|
|
|
#endif
|
|
|
|
|
2019-10-02 23:54:20 +00:00
|
|
|
/**
|
|
|
|
* Printing is active when the print job timer is running
|
|
|
|
*/
|
|
|
|
bool printingIsActive() {
|
2019-10-24 20:35:40 +00:00
|
|
|
return !did_pause_print && (print_job_timer.isRunning() || IS_SD_PRINTING());
|
2019-10-02 23:54:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Printing is paused according to SD or host indicators
|
|
|
|
*/
|
|
|
|
bool printingIsPaused() {
|
2019-10-24 20:35:40 +00:00
|
|
|
return did_pause_print || print_job_timer.isPaused() || IS_SD_PAUSED();
|
|
|
|
}
|
|
|
|
|
|
|
|
void startOrResumeJob() {
|
2019-10-27 22:49:27 +00:00
|
|
|
if (!printingIsPaused()) {
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(CANCEL_OBJECTS, cancelable.reset());
|
|
|
|
TERN_(LCD_SHOW_E_TOTAL, e_move_accumulator = 0);
|
2019-11-13 08:07:09 +00:00
|
|
|
#if BOTH(LCD_SET_PROGRESS_MANUALLY, USE_M73_REMAINING_TIME)
|
2019-11-13 01:36:54 +00:00
|
|
|
ui.reset_remaining_time();
|
|
|
|
#endif
|
2019-10-27 22:49:27 +00:00
|
|
|
}
|
2019-10-24 20:35:40 +00:00
|
|
|
print_job_timer.start();
|
2019-10-02 23:54:20 +00:00
|
|
|
}
|
|
|
|
|
2019-10-29 22:04:39 +00:00
|
|
|
#if ENABLED(SDSUPPORT)
|
|
|
|
|
2020-02-26 04:18:14 +00:00
|
|
|
inline void abortSDPrinting() {
|
2020-04-22 21:35:03 +00:00
|
|
|
card.endFilePrint(TERN_(SD_RESORT, true));
|
2019-10-29 22:04:39 +00:00
|
|
|
queue.clear();
|
|
|
|
quickstop_stepper();
|
|
|
|
print_job_timer.stop();
|
|
|
|
#if DISABLED(SD_ABORT_NO_COOLDOWN)
|
|
|
|
thermalManager.disable_all_heaters();
|
2019-10-29 21:00:17 +00:00
|
|
|
#endif
|
2020-04-03 00:31:08 +00:00
|
|
|
#if !HAS_CUTTER
|
|
|
|
thermalManager.zero_fan_speeds();
|
|
|
|
#else
|
|
|
|
cutter.kill(); // Full cutter shutdown including ISR control
|
|
|
|
#endif
|
2019-10-29 22:04:39 +00:00
|
|
|
wait_for_heatup = false;
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(POWER_LOSS_RECOVERY, recovery.purge());
|
2019-10-29 22:04:39 +00:00
|
|
|
#ifdef EVENT_GCODE_SD_STOP
|
|
|
|
queue.inject_P(PSTR(EVENT_GCODE_SD_STOP));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-02-26 04:18:14 +00:00
|
|
|
inline void finishSDPrinting() {
|
2020-03-28 08:18:53 +00:00
|
|
|
if (queue.enqueue_one_P(PSTR("M1001")))
|
|
|
|
marlin_state = MF_RUNNING;
|
2020-02-26 04:18:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // SDSUPPORT
|
2019-10-29 21:00:17 +00:00
|
|
|
|
2015-04-03 22:31:35 +00:00
|
|
|
/**
|
2020-02-26 04:18:14 +00:00
|
|
|
* Minimal management of Marlin's core activities:
|
2015-04-04 06:42:50 +00:00
|
|
|
* - Keep the command buffer full
|
|
|
|
* - Check for maximum inactive time between commands
|
|
|
|
* - Check for maximum inactive time between stepper commands
|
2018-11-05 07:08:40 +00:00
|
|
|
* - Check if CHDK_PIN needs to go LOW
|
2015-04-04 06:42:50 +00:00
|
|
|
* - 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)
|
2019-02-27 03:03:13 +00:00
|
|
|
* - Pulse FET_SAFETY_PIN if it exists
|
2015-04-03 22:31:35 +00:00
|
|
|
*/
|
2020-02-21 02:09:37 +00:00
|
|
|
inline void manage_inactivity(const bool ignore_stepper_queue=false) {
|
2015-08-05 11:40:36 +00:00
|
|
|
|
2019-06-19 05:00:19 +00:00
|
|
|
if (queue.length < BUFSIZE) queue.get_available_commands();
|
2015-04-03 22:31:35 +00:00
|
|
|
|
2017-03-29 00:45:54 +00:00
|
|
|
const millis_t ms = millis();
|
2015-04-03 22:31:35 +00:00
|
|
|
|
2020-07-01 21:27:28 +00:00
|
|
|
// Prevent steppers timing-out in the middle of M600
|
2020-07-02 03:28:37 +00:00
|
|
|
// unless PAUSE_PARK_NO_STEPPER_TIMEOUT is disabled
|
|
|
|
const bool parked_or_ignoring = ignore_stepper_queue ||
|
|
|
|
(BOTH(ADVANCED_PAUSE_FEATURE, PAUSE_PARK_NO_STEPPER_TIMEOUT) && did_pause_print);
|
2020-07-01 21:27:28 +00:00
|
|
|
|
2020-07-02 03:28:37 +00:00
|
|
|
// Reset both the M18/M84 activity timeout and the M85 max 'kill' timeout
|
|
|
|
if (parked_or_ignoring) gcode.reset_stepper_timeout(ms);
|
2020-07-01 21:27:28 +00:00
|
|
|
|
|
|
|
if (gcode.stepper_max_timed_out(ms)) {
|
2017-06-09 15:51:23 +00:00
|
|
|
SERIAL_ERROR_START();
|
2020-02-26 09:02:03 +00:00
|
|
|
SERIAL_ECHOLNPAIR(STR_KILL_INACTIVE_TIME, parser.command_ptr);
|
2018-10-19 02:20:56 +00:00
|
|
|
kill();
|
2017-03-14 17:24:46 +00:00
|
|
|
}
|
2017-02-10 06:13:58 +00:00
|
|
|
|
2020-07-02 03:28:37 +00:00
|
|
|
// M18 / M94 : Handle steppers inactive time timeout
|
2020-07-01 21:27:28 +00:00
|
|
|
if (gcode.stepper_inactive_time) {
|
2020-07-02 03:28:37 +00:00
|
|
|
|
2019-01-24 01:06:54 +00:00
|
|
|
static bool already_shutdown_steppers; // = false
|
2020-07-02 03:28:37 +00:00
|
|
|
|
|
|
|
// Any moves in the planner? Resets both the M18/M84
|
|
|
|
// activity timeout and the M85 max 'kill' timeout
|
2018-03-22 00:30:06 +00:00
|
|
|
if (planner.has_blocks_queued())
|
2020-07-01 21:27:28 +00:00
|
|
|
gcode.reset_stepper_timeout(ms);
|
2020-07-02 03:28:37 +00:00
|
|
|
else if (!parked_or_ignoring && gcode.stepper_inactive_timeout()) {
|
2019-01-24 01:06:54 +00:00
|
|
|
if (!already_shutdown_steppers) {
|
|
|
|
already_shutdown_steppers = true; // L6470 SPI will consume 99% of free time without this
|
2020-07-02 03:28:37 +00:00
|
|
|
|
|
|
|
// Individual axes will be disabled if configured
|
2020-03-08 04:20:41 +00:00
|
|
|
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 03:28:37 +00:00
|
|
|
|
2020-07-03 14:53:22 +00:00
|
|
|
TERN_(AUTO_BED_LEVELING_UBL, ubl.steppers_were_disabled());
|
2019-01-24 01:06:54 +00:00
|
|
|
}
|
2018-03-22 00:30:06 +00:00
|
|
|
}
|
2019-01-24 01:06:54 +00:00
|
|
|
else
|
|
|
|
already_shutdown_steppers = false;
|
2015-06-01 08:42:28 +00:00
|
|
|
}
|
2015-03-07 20:43:15 +00:00
|
|
|
|
2018-11-05 07:08:40 +00:00
|
|
|
#if PIN_EXISTS(CHDK) // Check if pin should be set to LOW (after M240 set it HIGH)
|
2019-02-14 21:09:35 +00:00
|
|
|
if (chdk_timeout && ELAPSED(ms, chdk_timeout)) {
|
|
|
|
chdk_timeout = 0;
|
2018-11-05 07:08:40 +00:00
|
|
|
WRITE(CHDK_PIN, LOW);
|
2014-03-10 20:57:08 +00:00
|
|
|
}
|
|
|
|
#endif
|
2015-04-03 22:31:35 +00:00
|
|
|
|
|
|
|
#if HAS_KILL
|
2015-08-05 11:40:36 +00:00
|
|
|
|
2014-12-28 18:54:06 +00:00
|
|
|
// Check if the kill button was pressed and wait just in case it was an accidental
|
|
|
|
// key kill key press
|
|
|
|
// -------------------------------------------------------------------------------
|
2015-04-03 22:45:41 +00:00
|
|
|
static int killCount = 0; // make the inactivity button a bit less responsive
|
|
|
|
const int KILL_DELAY = 750;
|
2020-05-05 08:31:03 +00:00
|
|
|
if (kill_state())
|
2015-10-03 06:08:58 +00:00
|
|
|
killCount++;
|
2014-12-28 18:54:06 +00:00
|
|
|
else if (killCount > 0)
|
2015-10-03 06:08:58 +00:00
|
|
|
killCount--;
|
2015-04-03 22:31:35 +00:00
|
|
|
|
2014-12-28 18:54:06 +00:00
|
|
|
// Exceeded threshold and we can confirm that it was not accidental
|
|
|
|
// KILL the machine
|
|
|
|
// ----------------------------------------------------------------
|
2017-03-14 17:24:46 +00:00
|
|
|
if (killCount >= KILL_DELAY) {
|
2020-02-26 09:02:03 +00:00
|
|
|
SERIAL_ERROR_MSG(STR_KILL_BUTTON);
|
2018-10-19 02:20:56 +00:00
|
|
|
kill();
|
2017-03-14 17:24:46 +00:00
|
|
|
}
|
2012-11-06 11:06:41 +00:00
|
|
|
#endif
|
2014-12-28 18:54:06 +00:00
|
|
|
|
2015-04-03 22:31:35 +00:00
|
|
|
#if HAS_HOME
|
2019-06-27 20:07:45 +00:00
|
|
|
// 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;
|
2015-05-04 17:48:49 +00:00
|
|
|
LCD_MESSAGEPGM(MSG_AUTO_HOME);
|
2019-11-02 04:51:25 +00:00
|
|
|
queue.enqueue_now_P(G28_STR);
|
2015-04-03 22:31:35 +00:00
|
|
|
}
|
2014-12-28 18:54:06 +00:00
|
|
|
}
|
2015-04-03 22:31:35 +00:00
|
|
|
#endif
|
2015-08-05 11:40:36 +00:00
|
|
|
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(USE_CONTROLLER_FAN, controllerFan.update()); // Check if fan should be turned on to cool stepper drivers down
|
2015-04-03 22:31:35 +00:00
|
|
|
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(AUTO_POWER_CONTROL, powerManager.check());
|
2018-02-19 22:12:04 +00:00
|
|
|
|
2020-05-18 05:50:35 +00:00
|
|
|
TERN_(HOTEND_IDLE_TIMEOUT, hotend_idle.check());
|
|
|
|
|
2015-07-31 05:24:43 +00:00
|
|
|
#if ENABLED(EXTRUDER_RUNOUT_PREVENT)
|
2018-02-09 09:32:40 +00:00
|
|
|
if (thermalManager.degHotend(active_extruder) > EXTRUDER_RUNOUT_MINTEMP
|
2020-04-04 00:49:45 +00:00
|
|
|
&& ELAPSED(ms, gcode.previous_move_ms + SEC_TO_MS(EXTRUDER_RUNOUT_SECONDS))
|
2018-03-22 00:30:06 +00:00
|
|
|
&& !planner.has_blocks_queued()
|
2018-02-09 09:32:40 +00:00
|
|
|
) {
|
2016-06-28 22:06:56 +00:00
|
|
|
#if ENABLED(SWITCHING_EXTRUDER)
|
2018-05-27 22:56:21 +00:00
|
|
|
bool oldstatus;
|
|
|
|
switch (active_extruder) {
|
2020-01-30 09:24:23 +00:00
|
|
|
default: oldstatus = E0_ENABLE_READ(); ENABLE_AXIS_E0(); break;
|
2018-05-27 22:56:21 +00:00
|
|
|
#if E_STEPPERS > 1
|
2020-01-30 09:24:23 +00:00
|
|
|
case 2: case 3: oldstatus = E1_ENABLE_READ(); ENABLE_AXIS_E1(); break;
|
2018-05-27 22:56:21 +00:00
|
|
|
#if E_STEPPERS > 2
|
2020-01-30 09:24:23 +00:00
|
|
|
case 4: case 5: oldstatus = E2_ENABLE_READ(); ENABLE_AXIS_E2(); break;
|
2020-02-01 21:18:01 +00:00
|
|
|
#if E_STEPPERS > 3
|
|
|
|
case 6: case 7: oldstatus = E3_ENABLE_READ(); ENABLE_AXIS_E3(); break;
|
|
|
|
#endif // E_STEPPERS > 3
|
2018-05-27 22:56:21 +00:00
|
|
|
#endif // E_STEPPERS > 2
|
|
|
|
#endif // E_STEPPERS > 1
|
|
|
|
}
|
2016-06-28 22:06:56 +00:00
|
|
|
#else // !SWITCHING_EXTRUDER
|
2017-07-06 17:10:06 +00:00
|
|
|
bool oldstatus;
|
2015-10-03 06:08:58 +00:00
|
|
|
switch (active_extruder) {
|
2019-11-09 23:59:04 +00:00
|
|
|
default:
|
2020-01-30 09:24:23 +00:00
|
|
|
#define _CASE_EN(N) case N: oldstatus = E##N##_ENABLE_READ(); ENABLE_AXIS_E##N(); break;
|
2019-11-09 23:59:04 +00:00
|
|
|
REPEAT(E_STEPPERS, _CASE_EN);
|
2015-10-03 06:08:58 +00:00
|
|
|
}
|
2019-11-09 23:59:04 +00:00
|
|
|
#endif
|
2016-06-28 22:06:56 +00:00
|
|
|
|
2019-09-29 09:25:39 +00: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;
|
2017-03-20 21:41:59 +00:00
|
|
|
planner.set_e_position_mm(olde);
|
2018-05-12 06:38:02 +00:00
|
|
|
planner.synchronize();
|
2018-05-27 22:56:21 +00:00
|
|
|
|
2016-06-28 22:06:56 +00:00
|
|
|
#if ENABLED(SWITCHING_EXTRUDER)
|
2018-05-27 22:56:21 +00: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
|
2018-09-13 06:35:55 +00:00
|
|
|
case 4: case 5: oldstatus = E2_ENABLE_WRITE(oldstatus); break;
|
2018-05-27 22:56:21 +00:00
|
|
|
#endif // E_STEPPERS > 2
|
|
|
|
#endif // E_STEPPERS > 1
|
|
|
|
}
|
|
|
|
#else // !SWITCHING_EXTRUDER
|
2016-06-28 22:06:56 +00:00
|
|
|
switch (active_extruder) {
|
2019-11-09 23:59:04 +00:00
|
|
|
#define _CASE_RESTORE(N) case N: E##N##_ENABLE_WRITE(oldstatus); break;
|
|
|
|
REPEAT(E_STEPPERS, _CASE_RESTORE);
|
2016-06-28 22:06:56 +00:00
|
|
|
}
|
|
|
|
#endif // !SWITCHING_EXTRUDER
|
2018-03-22 00:30:06 +00:00
|
|
|
|
2020-07-01 21:27:28 +00:00
|
|
|
gcode.reset_stepper_timeout(ms);
|
2012-11-06 11:06:41 +00:00
|
|
|
}
|
2016-06-28 22:06:56 +00:00
|
|
|
#endif // EXTRUDER_RUNOUT_PREVENT
|
2015-04-03 22:31:35 +00:00
|
|
|
|
2015-07-31 05:24:43 +00:00
|
|
|
#if ENABLED(DUAL_X_CARRIAGE)
|
2013-08-07 14:10:26 +00:00
|
|
|
// handle delayed move timeout
|
2016-04-10 22:55:12 +00:00
|
|
|
if (delayed_move_time && ELAPSED(ms, delayed_move_time + 1000UL) && IsRunning()) {
|
2013-08-07 14:10:26 +00:00
|
|
|
// travel moves have been received so enact them
|
|
|
|
delayed_move_time = 0xFFFFFFFFUL; // force moves to be done
|
2019-09-29 09:25:39 +00:00
|
|
|
destination = current_position;
|
2020-03-01 22:59:04 +00:00
|
|
|
prepare_line_to_destination();
|
2013-08-07 14:10:26 +00:00
|
|
|
}
|
2013-10-20 10:12:35 +00:00
|
|
|
#endif
|
2015-04-03 22:31:35 +00:00
|
|
|
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(TEMP_STAT_LEDS, handle_status_leds());
|
2015-04-03 22:31:35 +00:00
|
|
|
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(MONITOR_DRIVER_STATUS, monitor_tmc_drivers());
|
2017-03-07 05:00:43 +00:00
|
|
|
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(MONITOR_L6470_DRIVER_STATUS, L64xxManager.monitor_driver());
|
2019-01-24 01:06:54 +00:00
|
|
|
|
2017-11-16 01:01:52 +00: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 03:03:13 +00:00
|
|
|
|
|
|
|
#if PIN_EXISTS(FET_SAFETY)
|
|
|
|
static millis_t FET_next;
|
|
|
|
if (ELAPSED(ms, FET_next)) {
|
2020-01-09 02:00:06 +00:00
|
|
|
FET_next = ms + FET_SAFETY_DELAY; // 2µs pulse every FET_SAFETY_DELAY mS
|
2019-02-27 03:03:13 +00:00
|
|
|
OUT_WRITE(FET_SAFETY_PIN, !FET_SAFETY_INVERTED);
|
|
|
|
DELAY_US(2);
|
|
|
|
WRITE(FET_SAFETY_PIN, FET_SAFETY_INVERTED);
|
|
|
|
}
|
|
|
|
#endif
|
2012-11-06 11:06:41 +00:00
|
|
|
}
|
|
|
|
|
2016-09-13 07:11:45 +00:00
|
|
|
/**
|
2020-04-04 05:08:25 +00:00
|
|
|
* 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
|
|
|
|
* - Update the Prusa MMU2
|
|
|
|
* - Handle Joystick jogging
|
2016-09-13 07:11:45 +00:00
|
|
|
*/
|
2020-04-02 06:22:48 +00:00
|
|
|
void idle(TERN_(ADVANCED_PAUSE_FEATURE, bool no_stepper_sleep/*=false*/)) {
|
2020-04-04 05:08:25 +00:00
|
|
|
|
|
|
|
// 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 21:35:03 +00:00
|
|
|
TERN_(MAX7219_DEBUG, max7219.idle_tasks());
|
2020-04-04 05:08:25 +00:00
|
|
|
|
|
|
|
// Return if setup() isn't completed
|
|
|
|
if (marlin_state == MF_INITIALIZING) return;
|
|
|
|
|
|
|
|
// Handle filament runout sensors
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(HAS_FILAMENT_SENSOR, runout.run());
|
2020-04-04 05:08:25 +00:00
|
|
|
|
|
|
|
// Run HAL idle tasks
|
|
|
|
#ifdef HAL_IDLETASK
|
|
|
|
HAL_idletask();
|
|
|
|
#endif
|
|
|
|
|
2020-04-02 06:22:48 +00:00
|
|
|
// Handle Power-Loss Recovery
|
2019-09-10 23:52:41 +00:00
|
|
|
#if ENABLED(POWER_LOSS_RECOVERY) && PIN_EXISTS(POWER_LOSS)
|
|
|
|
recovery.outage();
|
|
|
|
#endif
|
2019-08-05 03:22:58 +00:00
|
|
|
|
2020-04-02 06:22:48 +00:00
|
|
|
// Run StallGuard endstop checks
|
2019-08-05 03:22:58 +00:00
|
|
|
#if ENABLED(SPI_ENDSTOPS)
|
2019-08-09 22:00:20 +00:00
|
|
|
if (endstops.tmc_spi_homing.any
|
2020-04-02 06:22:48 +00:00
|
|
|
&& TERN1(IMPROVE_HOMING_RELIABILITY, ELAPSED(millis(), sg_guard_period))
|
|
|
|
) LOOP_L_N(i, 4) // Read SGT 4 times per idle loop
|
2019-08-05 03:22:58 +00:00
|
|
|
if (endstops.tmc_spi_homing_check()) break;
|
|
|
|
#endif
|
|
|
|
|
2020-04-04 05:08:25 +00:00
|
|
|
// Handle SD Card insert / remove
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(SDSUPPORT, card.manage_media());
|
2017-08-25 22:03:07 +00:00
|
|
|
|
2020-04-04 05:08:25 +00:00
|
|
|
// Handle USB Flash Drive insert / remove
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(USB_FLASH_DRIVE_SUPPORT, Sd2Card::idle());
|
2016-11-09 00:03:40 +00:00
|
|
|
|
2020-04-02 06:22:48 +00:00
|
|
|
// Announce Host Keepalive state (if any)
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(HOST_KEEPALIVE_FEATURE, gcode.host_keepalive());
|
2016-11-09 00:03:40 +00:00
|
|
|
|
2020-04-02 06:22:48 +00:00
|
|
|
// Update the Print Job Timer state
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(PRINTCOUNTER, print_job_timer.tick());
|
2016-09-13 07:11:45 +00:00
|
|
|
|
2020-04-02 06:22:48 +00:00
|
|
|
// Update the Beeper queue
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(USE_BEEPER, buzzer.tick());
|
2017-06-09 12:06:23 +00:00
|
|
|
|
2020-06-21 07:40:16 +00:00
|
|
|
// Handle UI input / draw events
|
|
|
|
TERN(DWIN_CREALITY_LCD, DWIN_Update(), ui.update());
|
2020-04-04 05:08:25 +00:00
|
|
|
|
2020-04-02 06:22:48 +00:00
|
|
|
// Run i2c Position Encoders
|
2017-06-09 12:06:23 +00:00
|
|
|
#if ENABLED(I2C_POSITION_ENCODERS)
|
2018-02-08 09:57:11 +00:00
|
|
|
static millis_t i2cpem_next_update_ms;
|
2019-07-24 06:52:36 +00: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;
|
|
|
|
}
|
2017-06-09 12:06:23 +00:00
|
|
|
}
|
|
|
|
#endif
|
2017-12-21 05:22:08 +00:00
|
|
|
|
2020-04-02 06:22:48 +00:00
|
|
|
// Auto-report Temperatures / SD Status
|
2018-03-07 07:57:09 +00:00
|
|
|
#if HAS_AUTO_REPORTING
|
2020-02-21 02:09:37 +00:00
|
|
|
if (!gcode.autoreport_paused) {
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(AUTO_REPORT_TEMPERATURES, thermalManager.auto_report_temperatures());
|
|
|
|
TERN_(AUTO_REPORT_SD_STATUS, card.auto_report_sd_status());
|
2018-03-07 07:57:09 +00:00
|
|
|
}
|
|
|
|
#endif
|
2018-07-02 15:06:17 +00:00
|
|
|
|
2020-04-02 06:22:48 +00:00
|
|
|
// Update the Prusa MMU2
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(PRUSA_MMU2, mmu2.mmu_loop());
|
2019-09-08 05:55:34 +00:00
|
|
|
|
2020-04-02 06:22:48 +00:00
|
|
|
// Handle Joystick jogging
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(POLL_JOG, joystick.inject_jog_moves());
|
2020-05-12 00:22:41 +00:00
|
|
|
|
|
|
|
// Direct Stepping
|
|
|
|
TERN_(DIRECT_STEPPING, page_manager.write_responses());
|
2020-06-16 02:05:33 +00:00
|
|
|
|
2020-07-01 06:30:24 +00:00
|
|
|
#if ENABLED(TFT_LVGL_UI)
|
2020-06-16 02:05:33 +00:00
|
|
|
LV_TASK_HANDLER();
|
|
|
|
#endif
|
2016-09-13 07:11:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Kill all activity and lock the machine.
|
|
|
|
* After this the machine will need to be reset.
|
|
|
|
*/
|
2019-10-10 00:46:10 +00:00
|
|
|
void kill(PGM_P const lcd_error/*=nullptr*/, PGM_P const lcd_component/*=nullptr*/, const bool steppers_off/*=false*/) {
|
2017-03-21 14:06:01 +00:00
|
|
|
thermalManager.disable_all_heaters();
|
2017-03-29 00:45:54 +00:00
|
|
|
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(HAS_CUTTER, cutter.kill()); // Full cutter shutdown including ISR control
|
2020-04-03 00:31:08 +00:00
|
|
|
|
2020-02-26 09:02:03 +00:00
|
|
|
SERIAL_ERROR_MSG(STR_ERR_KILLED);
|
2018-10-19 18:30:37 +00:00
|
|
|
|
2019-05-08 01:32:50 +00:00
|
|
|
#if HAS_DISPLAY
|
2019-11-10 03:17:18 +00:00
|
|
|
ui.kill_screen(lcd_error ?: GET_TEXT(MSG_KILLED), lcd_component ?: NUL_STR);
|
2015-10-04 15:33:55 +00:00
|
|
|
#else
|
2019-10-10 00:46:10 +00:00
|
|
|
UNUSED(lcd_error);
|
|
|
|
UNUSED(lcd_component);
|
2015-05-20 20:03:16 +00:00
|
|
|
#endif
|
2015-05-20 18:53:48 +00:00
|
|
|
|
2017-07-28 04:42:01 +00:00
|
|
|
#ifdef ACTION_ON_KILL
|
2019-01-28 04:43:13 +00:00
|
|
|
host_action_kill();
|
2017-07-02 08:44:24 +00:00
|
|
|
#endif
|
2017-07-07 02:24:30 +00:00
|
|
|
|
2019-08-28 05:51:01 +00:00
|
|
|
minkill(steppers_off);
|
2018-10-19 02:20:56 +00:00
|
|
|
}
|
|
|
|
|
2019-08-28 05:51:01 +00:00
|
|
|
void minkill(const bool steppers_off/*=false*/) {
|
2018-10-19 02:20:56 +00:00
|
|
|
|
2018-10-20 06:44:46 +00:00
|
|
|
// Wait a short time (allows messages to get out before shutting down.
|
2018-10-21 18:43:21 +00:00
|
|
|
for (int i = 1000; i--;) DELAY_US(600);
|
2018-10-20 06:44:46 +00:00
|
|
|
|
|
|
|
cli(); // Stop interrupts
|
|
|
|
|
|
|
|
// Wait to ensure all interrupts stopped
|
2018-10-21 18:43:21 +00:00
|
|
|
for (int i = 1000; i--;) DELAY_US(250);
|
2018-10-19 02:20:56 +00:00
|
|
|
|
2019-08-28 05:51:01 +00:00
|
|
|
// Reiterate heaters off
|
|
|
|
thermalManager.disable_all_heaters();
|
|
|
|
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(HAS_CUTTER, cutter.kill()); // Reiterate cutter shutdown
|
2020-04-03 00:31:08 +00:00
|
|
|
|
2019-08-28 05:51:01 +00:00
|
|
|
// Power off all steppers (for M112) or just the E steppers
|
|
|
|
steppers_off ? disable_all_steppers() : disable_e_steppers();
|
2018-10-19 02:20:56 +00:00
|
|
|
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(PSU_CONTROL, PSU_OFF());
|
2015-03-30 23:50:05 +00:00
|
|
|
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(HAS_SUICIDE, suicide());
|
2017-09-27 09:40:48 +00:00
|
|
|
|
2019-03-10 14:57:38 +00:00
|
|
|
#if HAS_KILL
|
|
|
|
|
|
|
|
// Wait for kill to be released
|
2020-05-05 08:31:03 +00:00
|
|
|
while (kill_state()) watchdog_refresh();
|
2019-03-10 14:57:38 +00:00
|
|
|
|
|
|
|
// Wait for kill to be pressed
|
2020-05-05 08:31:03 +00:00
|
|
|
while (!kill_state()) watchdog_refresh();
|
2019-03-10 14:57:38 +00:00
|
|
|
|
2020-04-03 00:31:08 +00:00
|
|
|
void (*resetFunc)() = 0; // Declare resetFunc() at address 0
|
2019-09-17 01:27:04 +00:00
|
|
|
resetFunc(); // Jump to address 0
|
2019-03-10 14:57:38 +00:00
|
|
|
|
2020-04-03 00:31:08 +00:00
|
|
|
#else
|
2019-03-10 14:57:38 +00:00
|
|
|
|
2020-04-03 00:31:08 +00:00
|
|
|
for (;;) watchdog_refresh(); // Wait for reset
|
2019-03-10 14:57:38 +00:00
|
|
|
|
2020-04-03 00:31:08 +00:00
|
|
|
#endif
|
2012-11-06 11:06:41 +00:00
|
|
|
}
|
|
|
|
|
2016-09-13 07:11:45 +00:00
|
|
|
/**
|
|
|
|
* Turn off heaters and stop the print in progress
|
|
|
|
* After a stop the machine may be resumed with M999
|
|
|
|
*/
|
2016-04-18 07:05:22 +00:00
|
|
|
void stop() {
|
2017-05-07 11:06:06 +00:00
|
|
|
thermalManager.disable_all_heaters(); // 'unpause' taken care of in here
|
2018-10-19 02:20:56 +00:00
|
|
|
print_job_timer.stop();
|
2017-05-07 11:06:06 +00:00
|
|
|
|
|
|
|
#if ENABLED(PROBING_FANS_OFF)
|
2019-01-12 06:41:48 +00:00
|
|
|
if (thermalManager.fans_paused) thermalManager.set_fans_paused(false); // put things back the way they were
|
2017-05-07 11:06:06 +00:00
|
|
|
#endif
|
|
|
|
|
2015-05-17 08:47:02 +00:00
|
|
|
if (IsRunning()) {
|
2020-02-26 09:02:03 +00:00
|
|
|
SERIAL_ERROR_MSG(STR_ERR_STOPPED);
|
2015-05-17 08:47:02 +00:00
|
|
|
LCD_MESSAGEPGM(MSG_STOPPED);
|
2017-04-01 05:23:14 +00:00
|
|
|
safe_delay(350); // allow enough time for messages to get out before stopping
|
2020-03-14 23:47:44 +00:00
|
|
|
marlin_state = MF_STOPPED;
|
2012-11-06 11:06:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-12 01:21:54 +00:00
|
|
|
/**
|
|
|
|
* 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
|
2020-03-07 06:16:33 +00:00
|
|
|
* • Max7219
|
2016-09-12 01:21:54 +00:00
|
|
|
*/
|
|
|
|
void setup() {
|
|
|
|
|
2020-04-16 08:36:53 +00:00
|
|
|
#if ENABLED(MARLIN_DEV_MODE)
|
|
|
|
auto log_current_ms = [&](PGM_P const msg) {
|
|
|
|
SERIAL_ECHO_START();
|
2020-06-23 02:12:45 +00:00
|
|
|
SERIAL_CHAR('['); SERIAL_ECHO(millis()); SERIAL_ECHOPGM("] ");
|
2020-04-16 08:36:53 +00:00
|
|
|
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)
|
|
|
|
|
2020-04-12 02:29:52 +00:00
|
|
|
#if EITHER(DISABLE_DEBUG, DISABLE_JTAG)
|
2018-09-30 00:00:49 +00:00
|
|
|
// Disable any hardware debug to free up pins for IO
|
2020-04-12 02:29:52 +00:00
|
|
|
#if ENABLED(DISABLE_DEBUG) && defined(JTAGSWD_DISABLE)
|
2018-09-30 00:00:49 +00:00
|
|
|
JTAGSWD_DISABLE();
|
|
|
|
#elif defined(JTAG_DISABLE)
|
|
|
|
JTAG_DISABLE();
|
|
|
|
#else
|
2020-04-12 02:29:52 +00:00
|
|
|
#error "DISABLE_(DEBUG|JTAG) is not supported for the selected MCU/Board."
|
2018-09-30 00:00:49 +00:00
|
|
|
#endif
|
2020-04-12 02:29:52 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if NUM_SERIAL > 0
|
|
|
|
MYSERIAL0.begin(BAUDRATE);
|
|
|
|
uint32_t serial_connect_timeout = millis() + 1000UL;
|
|
|
|
while (!MYSERIAL0 && PENDING(millis(), serial_connect_timeout)) { /*nada*/ }
|
2020-05-12 10:50:28 +00:00
|
|
|
#if HAS_MULTI_SERIAL
|
2020-04-12 02:29:52 +00:00
|
|
|
MYSERIAL1.begin(BAUDRATE);
|
|
|
|
serial_connect_timeout = millis() + 1000UL;
|
|
|
|
while (!MYSERIAL1 && PENDING(millis(), serial_connect_timeout)) { /*nada*/ }
|
2018-09-27 23:02:50 +00:00
|
|
|
#endif
|
2020-04-12 02:29:52 +00:00
|
|
|
SERIAL_ECHO_MSG("start");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
SETUP_RUN(HAL_init());
|
|
|
|
|
|
|
|
#if HAS_L64XX
|
|
|
|
SETUP_RUN(L64xxManager.init()); // Set up SPI, init drivers
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(SMART_EFFECTOR) && PIN_EXISTS(SMART_EFFECTOR_MOD)
|
|
|
|
OUT_WRITE(SMART_EFFECTOR_MOD_PIN, LOW); // Put Smart Effector into NORMAL mode
|
2016-09-12 01:21:54 +00:00
|
|
|
#endif
|
|
|
|
|
2019-02-13 02:08:34 +00:00
|
|
|
#if HAS_FILAMENT_SENSOR
|
2020-04-12 02:29:52 +00:00
|
|
|
SETUP_RUN(runout.setup());
|
2016-09-12 01:21:54 +00:00
|
|
|
#endif
|
|
|
|
|
2019-08-20 07:40:44 +00:00
|
|
|
#if ENABLED(POWER_LOSS_RECOVERY)
|
2020-04-12 02:29:52 +00:00
|
|
|
SETUP_RUN(recovery.setup());
|
2019-08-20 07:40:44 +00:00
|
|
|
#endif
|
|
|
|
|
2020-04-12 02:29:52 +00:00
|
|
|
SETUP_RUN(setup_killpin());
|
2019-06-05 04:18:51 +00:00
|
|
|
|
2019-07-09 03:59:51 +00:00
|
|
|
#if HAS_TMC220x
|
2020-04-12 02:29:52 +00:00
|
|
|
SETUP_RUN(tmc_serial_begin());
|
2019-05-26 11:07:12 +00:00
|
|
|
#endif
|
2019-06-05 04:18:51 +00:00
|
|
|
|
2020-04-12 02:29:52 +00:00
|
|
|
SETUP_RUN(setup_powerhold());
|
2016-09-12 01:21:54 +00:00
|
|
|
|
|
|
|
#if HAS_STEPPER_RESET
|
2020-04-12 02:29:52 +00:00
|
|
|
SETUP_RUN(disableStepperDrivers());
|
2016-09-12 01:21:54 +00:00
|
|
|
#endif
|
|
|
|
|
2020-02-09 03:01:57 +00:00
|
|
|
#if HAS_TMC_SPI
|
2018-10-03 07:48:49 +00:00
|
|
|
#if DISABLED(TMC_USE_SW_SPI)
|
2020-04-16 08:36:53 +00:00
|
|
|
SETUP_RUN(SPI.begin());
|
2018-10-03 07:48:49 +00:00
|
|
|
#endif
|
2020-04-16 08:36:53 +00:00
|
|
|
SETUP_RUN(tmc_init_cs_pins());
|
2018-02-10 20:08:53 +00:00
|
|
|
#endif
|
|
|
|
|
2018-07-02 04:11:42 +00:00
|
|
|
#ifdef BOARD_INIT
|
2020-04-16 08:36:53 +00:00
|
|
|
SETUP_LOG("BOARD_INIT");
|
2018-07-02 04:11:42 +00:00
|
|
|
BOARD_INIT();
|
|
|
|
#endif
|
|
|
|
|
2020-04-16 08:55:33 +00:00
|
|
|
SETUP_RUN(esp_wifi_init());
|
|
|
|
|
2016-09-12 01:21:54 +00:00
|
|
|
// Check startup - does nothing if bootloader sets MCUSR to 0
|
2020-04-12 02:29:52 +00:00
|
|
|
const byte mcu = HAL_get_reset_source();
|
2020-06-29 06:02:36 +00: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);
|
2017-06-17 23:36:10 +00:00
|
|
|
HAL_clear_reset_source();
|
|
|
|
|
2020-02-09 04:25:24 +00:00
|
|
|
serialprintPGM(GET_TEXT(MSG_MARLIN));
|
2016-09-12 22:49:35 +00:00
|
|
|
SERIAL_CHAR(' ');
|
|
|
|
SERIAL_ECHOLNPGM(SHORT_BUILD_VERSION);
|
2017-06-09 15:51:23 +00:00
|
|
|
SERIAL_EOL();
|
2016-09-12 01:21:54 +00:00
|
|
|
|
2016-09-12 22:49:35 +00:00
|
|
|
#if defined(STRING_DISTRIBUTION_DATE) && defined(STRING_CONFIG_H_AUTHOR)
|
2019-09-26 08:47:26 +00:00
|
|
|
SERIAL_ECHO_MSG(
|
2020-02-26 09:02:03 +00:00
|
|
|
STR_CONFIGURATION_VER
|
2019-09-26 08:47:26 +00:00
|
|
|
STRING_DISTRIBUTION_DATE
|
2020-02-26 09:02:03 +00:00
|
|
|
STR_AUTHOR STRING_CONFIG_H_AUTHOR
|
2019-09-26 08:47:26 +00:00
|
|
|
);
|
2018-11-29 22:58:58 +00:00
|
|
|
SERIAL_ECHO_MSG("Compiled: " __DATE__);
|
2016-09-12 22:49:35 +00:00
|
|
|
#endif
|
2016-09-12 01:21:54 +00:00
|
|
|
|
2017-06-09 15:51:23 +00:00
|
|
|
SERIAL_ECHO_START();
|
2020-02-26 09:02:03 +00:00
|
|
|
SERIAL_ECHOLNPAIR(STR_FREE_MEMORY, freeMemory(), STR_PLANNER_BUFFER_BYTES, (int)sizeof(block_t) * (BLOCK_BUFFER_SIZE));
|
2016-09-12 01:21:54 +00:00
|
|
|
|
2019-09-25 23:41:04 +00:00
|
|
|
// Set up LEDs early
|
|
|
|
#if HAS_COLOR_LEDS
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(leds.setup());
|
2019-09-25 23:41:04 +00:00
|
|
|
#endif
|
|
|
|
|
2020-03-18 18:41:12 +00:00
|
|
|
#if ENABLED(USE_CONTROLLER_FAN) // Set up fan controller to initialize also the default configurations.
|
|
|
|
SETUP_RUN(controllerFan.setup());
|
|
|
|
#endif
|
|
|
|
|
2020-04-12 02:29:52 +00:00
|
|
|
// UI must be initialized before EEPROM
|
|
|
|
// (because EEPROM code calls the UI).
|
|
|
|
|
2020-06-16 06:45:27 +00: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 HAS_SPI_LCD && ENABLED(SHOW_BOOTSCREEN)
|
|
|
|
SETUP_RUN(ui.show_bootscreen());
|
|
|
|
#endif
|
|
|
|
SETUP_RUN(ui.reset_status()); // Load welcome message early. (Retained if no errors exist.)
|
|
|
|
#endif
|
2020-03-08 04:33:38 +00:00
|
|
|
|
2020-04-04 05:08:25 +00:00
|
|
|
#if BOTH(SDSUPPORT, SDCARD_EEPROM_EMULATION)
|
|
|
|
SETUP_RUN(card.mount()); // Mount media with settings before first_load
|
2020-03-08 04:33:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
SETUP_RUN(settings.first_load()); // Load data from EEPROM if available (or use defaults)
|
|
|
|
// This also updates variables in the planner, elsewhere
|
|
|
|
|
2019-07-14 23:16:26 +00:00
|
|
|
#if ENABLED(TOUCH_BUTTONS)
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(touch.init());
|
2019-07-14 23:16:26 +00:00
|
|
|
#endif
|
|
|
|
|
2020-04-22 21:35:03 +00:00
|
|
|
TERN_(HAS_M206_COMMAND, current_position += home_offset); // Init current position based on home_offset
|
2016-09-12 01:21:54 +00:00
|
|
|
|
2020-03-08 04:33:38 +00:00
|
|
|
sync_plan_position(); // Vital to init stepper/planner equivalent for current_position
|
2016-09-12 01:21:54 +00:00
|
|
|
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(thermalManager.init()); // Initialize temperature loop
|
2016-09-12 01:21:54 +00:00
|
|
|
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(print_job_timer.init()); // Initial setup of print job timer
|
2018-03-05 03:23:43 +00:00
|
|
|
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(endstops.init()); // Init endstops and pullups
|
2018-05-16 07:08:43 +00:00
|
|
|
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(stepper.init()); // Init stepper. This enables interrupts!
|
2017-09-08 20:35:25 +00:00
|
|
|
|
|
|
|
#if HAS_SERVOS
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(servo_init());
|
2017-09-08 20:35:25 +00:00
|
|
|
#endif
|
2016-09-12 01:21:54 +00:00
|
|
|
|
2018-04-02 04:54:12 +00:00
|
|
|
#if HAS_Z_SERVO_PROBE
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(probe.servo_probe_init());
|
2017-11-19 19:39:46 +00:00
|
|
|
#endif
|
|
|
|
|
2016-11-01 11:24:21 +00:00
|
|
|
#if HAS_PHOTOGRAPH
|
|
|
|
OUT_WRITE(PHOTOGRAPH_PIN, LOW);
|
|
|
|
#endif
|
|
|
|
|
2019-06-28 04:06:49 +00:00
|
|
|
#if HAS_CUTTER
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(cutter.init());
|
2017-04-07 18:52:45 +00:00
|
|
|
#endif
|
|
|
|
|
2019-06-13 23:43:11 +00: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 01:21:54 +00:00
|
|
|
#if HAS_BED_PROBE
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(endstops.enable_z_probe(false));
|
2016-09-12 01:21:54 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAS_STEPPER_RESET
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(enableStepperDrivers());
|
2016-09-12 01:21:54 +00:00
|
|
|
#endif
|
|
|
|
|
2020-04-19 03:56:23 +00:00
|
|
|
#if HAS_I2C_DIGIPOT
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(digipot_i2c_init());
|
2016-09-12 01:21:54 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(DAC_STEPPER_CURRENT)
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(dac_init());
|
2016-09-12 01:21:54 +00:00
|
|
|
#endif
|
|
|
|
|
2019-03-17 04:43:06 +00:00
|
|
|
#if EITHER(Z_PROBE_SLED, SOLENOID_PROBE) && HAS_SOLENOID_1
|
2018-10-01 23:33:52 +00:00
|
|
|
OUT_WRITE(SOL1_PIN, LOW); // OFF
|
2017-04-14 21:36:02 +00:00
|
|
|
#endif
|
2016-09-12 01:21:54 +00:00
|
|
|
|
2017-07-02 07:26:49 +00:00
|
|
|
#if HAS_HOME
|
|
|
|
SET_INPUT_PULLUP(HOME_PIN);
|
|
|
|
#endif
|
2016-09-12 01:21:54 +00:00
|
|
|
|
2016-09-24 20:33:29 +00:00
|
|
|
#if PIN_EXISTS(STAT_LED_RED)
|
2018-10-01 23:33:52 +00:00
|
|
|
OUT_WRITE(STAT_LED_RED_PIN, LOW); // OFF
|
2016-09-12 01:21:54 +00:00
|
|
|
#endif
|
|
|
|
|
2016-09-24 20:33:29 +00:00
|
|
|
#if PIN_EXISTS(STAT_LED_BLUE)
|
2018-10-01 23:33:52 +00:00
|
|
|
OUT_WRITE(STAT_LED_BLUE_PIN, LOW); // OFF
|
2016-09-12 01:21:54 +00:00
|
|
|
#endif
|
|
|
|
|
2019-01-16 00:50:56 +00:00
|
|
|
#if HAS_CASE_LIGHT
|
2019-01-17 19:20:26 +00:00
|
|
|
#if DISABLED(CASE_LIGHT_USE_NEOPIXEL)
|
2019-03-13 11:51:15 +00:00
|
|
|
if (PWM_PIN(CASE_LIGHT_PIN)) SET_PWM(CASE_LIGHT_PIN); else SET_OUTPUT(CASE_LIGHT_PIN);
|
2019-01-17 19:20:26 +00:00
|
|
|
#endif
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(update_case_light());
|
2019-01-16 00:50:56 +00:00
|
|
|
#endif
|
|
|
|
|
2017-06-02 18:57:31 +00:00
|
|
|
#if ENABLED(MK2_MULTIPLEXER)
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_LOG("MK2_MULTIPLEXER");
|
2017-06-02 18:57:31 +00:00
|
|
|
SET_OUTPUT(E_MUX0_PIN);
|
|
|
|
SET_OUTPUT(E_MUX1_PIN);
|
|
|
|
SET_OUTPUT(E_MUX2_PIN);
|
|
|
|
#endif
|
2017-08-25 22:03:07 +00:00
|
|
|
|
2017-08-15 12:48:10 +00:00
|
|
|
#if HAS_FANMUX
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(fanmux_init());
|
2017-08-15 12:48:10 +00:00
|
|
|
#endif
|
2017-08-25 22:03:07 +00:00
|
|
|
|
2018-10-16 08:38:57 +00:00
|
|
|
#if ENABLED(MIXING_EXTRUDER)
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(mixer.init());
|
2016-09-12 01:21:54 +00:00
|
|
|
#endif
|
|
|
|
|
2017-01-22 00:10:02 +00:00
|
|
|
#if ENABLED(BLTOUCH)
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(bltouch.init(/*set_voltage=*/true));
|
2017-01-22 00:10:02 +00:00
|
|
|
#endif
|
|
|
|
|
2017-06-09 12:06:23 +00:00
|
|
|
#if ENABLED(I2C_POSITION_ENCODERS)
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(I2CPEM.init());
|
2017-06-09 12:06:23 +00:00
|
|
|
#endif
|
|
|
|
|
2016-09-12 01:21:54 +00:00
|
|
|
#if ENABLED(EXPERIMENTAL_I2CBUS) && I2C_SLAVE_ADDRESS > 0
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_LOG("i2c...");
|
2016-09-12 01:21:54 +00:00
|
|
|
i2c.onReceive(i2c_on_receive);
|
|
|
|
i2c.onRequest(i2c_on_request);
|
|
|
|
#endif
|
2016-11-05 21:38:48 +00:00
|
|
|
|
2018-05-18 18:16:59 +00:00
|
|
|
#if DO_SWITCH_EXTRUDER
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(move_extruder_servo(0)); // Initialize extruder servo
|
2017-06-04 13:40:57 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(SWITCHING_NOZZLE)
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_LOG("SWITCHING_NOZZLE");
|
2019-02-04 06:19:56 +00:00
|
|
|
// Initialize nozzle servo(s)
|
|
|
|
#if SWITCHING_NOZZLE_TWO_SERVOS
|
|
|
|
lower_nozzle(0);
|
|
|
|
raise_nozzle(1);
|
|
|
|
#else
|
|
|
|
move_nozzle_servo(0);
|
|
|
|
#endif
|
2017-06-04 13:40:57 +00:00
|
|
|
#endif
|
2017-08-21 21:30:08 +00:00
|
|
|
|
2019-02-06 12:30:53 +00:00
|
|
|
#if ENABLED(MAGNETIC_PARKING_EXTRUDER)
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(mpe_settings_init());
|
2019-02-06 12:30:53 +00:00
|
|
|
#endif
|
|
|
|
|
2017-08-13 21:35:59 +00:00
|
|
|
#if ENABLED(PARKING_EXTRUDER)
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(pe_solenoid_init());
|
2017-08-13 21:35:59 +00:00
|
|
|
#endif
|
2018-03-08 23:34:50 +00:00
|
|
|
|
2020-03-08 21:13:41 +00:00
|
|
|
#if ENABLED(SWITCHING_TOOLHEAD)
|
2020-04-20 05:01:14 +00:00
|
|
|
SETUP_RUN(swt_init());
|
2020-03-08 21:13:41 +00:00
|
|
|
#endif
|
|
|
|
|
2019-07-01 10:55:23 +00:00
|
|
|
#if ENABLED(ELECTROMAGNETIC_SWITCHING_TOOLHEAD)
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(est_init());
|
2019-07-01 10:55:23 +00:00
|
|
|
#endif
|
|
|
|
|
2018-11-17 02:47:07 +00:00
|
|
|
#if ENABLED(USE_WATCHDOG)
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(watchdog_init()); // Reinit watchdog after HAL_get_reset_source call
|
2018-03-08 23:34:50 +00:00
|
|
|
#endif
|
2018-09-08 17:08:31 +00:00
|
|
|
|
|
|
|
#if ENABLED(EXTERNAL_CLOSED_LOOP_CONTROLLER)
|
2020-06-28 18:48:48 +00:00
|
|
|
SETUP_RUN(closedloop.init());
|
2018-09-08 17:08:31 +00:00
|
|
|
#endif
|
2018-09-12 08:49:46 +00:00
|
|
|
|
2019-08-15 02:05:15 +00:00
|
|
|
#ifdef STARTUP_COMMANDS
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_LOG("STARTUP_COMMANDS");
|
2019-08-15 02:05:15 +00:00
|
|
|
queue.inject_P(PSTR(STARTUP_COMMANDS));
|
|
|
|
#endif
|
|
|
|
|
2019-09-27 22:06:26 +00:00
|
|
|
#if ENABLED(HOST_PROMPT_SUPPORT)
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(host_action_prompt_end());
|
2019-09-27 22:06:26 +00:00
|
|
|
#endif
|
|
|
|
|
2020-03-02 18:03:43 +00:00
|
|
|
#if HAS_TRINAMIC_CONFIG && DISABLED(PSU_DEFAULT_OFF)
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(test_tmc_connection(true, true, true, true));
|
2018-12-10 02:54:48 +00:00
|
|
|
#endif
|
2019-02-01 01:10:52 +00:00
|
|
|
|
|
|
|
#if ENABLED(PRUSA_MMU2)
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(mmu2.init());
|
2020-02-26 09:04:02 +00:00
|
|
|
#endif
|
2020-03-07 06:16:33 +00:00
|
|
|
|
2020-06-16 06:45:27 +00:00
|
|
|
#if ENABLED(IIC_BL24CXX_EEPROM)
|
|
|
|
BL24CXX::init();
|
|
|
|
const uint8_t err = BL24CXX::check();
|
|
|
|
SERIAL_ECHO_TERNARY(err, "I2C_EEPROM Check ", "failed", "succeeded", "!\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(DWIN_CREALITY_LCD)
|
|
|
|
Encoder_Configuration();
|
|
|
|
HMI_Init();
|
|
|
|
HMI_StartFrame(true);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAS_SERVICE_INTERVALS && DISABLED(DWIN_CREALITY_LCD)
|
|
|
|
ui.reset_status(true); // Show service messages or keep current status
|
|
|
|
#endif
|
|
|
|
|
2020-03-07 06:16:33 +00:00
|
|
|
#if ENABLED(MAX7219_DEBUG)
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_RUN(max7219.init());
|
2020-03-07 06:16:33 +00:00
|
|
|
#endif
|
2020-03-08 04:33:38 +00:00
|
|
|
|
2020-05-12 00:22:41 +00:00
|
|
|
#if ENABLED(DIRECT_STEPPING)
|
|
|
|
SETUP_RUN(page_manager.init());
|
|
|
|
#endif
|
|
|
|
|
2020-07-01 06:30:24 +00:00
|
|
|
#if ENABLED(TFT_LVGL_UI)
|
|
|
|
if (!card.isMounted()) SETUP_RUN(card.mount()); // Mount SD to load graphics and fonts
|
2020-06-16 02:05:33 +00:00
|
|
|
SETUP_RUN(tft_lvgl_init());
|
|
|
|
#endif
|
|
|
|
|
2020-03-14 23:47:44 +00:00
|
|
|
marlin_state = MF_RUNNING;
|
|
|
|
|
2020-03-08 04:33:38 +00:00
|
|
|
SETUP_LOG("setup() completed.");
|
2016-09-12 01:21:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The main Marlin program loop
|
|
|
|
*
|
2020-02-26 04:18:14 +00:00
|
|
|
* - 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 01:21:54 +00:00
|
|
|
*/
|
|
|
|
void loop() {
|
2020-01-02 03:13:43 +00:00
|
|
|
do {
|
|
|
|
idle();
|
2019-08-06 01:33:15 +00:00
|
|
|
|
2018-05-01 06:01:02 +00:00
|
|
|
#if ENABLED(SDSUPPORT)
|
|
|
|
card.checkautostart();
|
2019-10-29 21:00:17 +00:00
|
|
|
if (card.flag.abort_sd_printing) abortSDPrinting();
|
2020-03-28 08:18:53 +00:00
|
|
|
if (marlin_state == MF_SD_COMPLETE) finishSDPrinting();
|
2019-10-29 21:00:17 +00:00
|
|
|
#endif
|
2018-04-15 23:27:54 +00:00
|
|
|
|
2019-06-19 05:00:19 +00:00
|
|
|
queue.advance();
|
2019-10-29 21:00:17 +00:00
|
|
|
|
2018-07-11 22:33:26 +00:00
|
|
|
endstops.event_handler();
|
2020-01-02 03:13:43 +00:00
|
|
|
|
2020-07-01 06:30:24 +00:00
|
|
|
TERN_(TFT_LVGL_UI, printer_state_polling());
|
2020-06-16 02:05:33 +00:00
|
|
|
|
2020-03-08 04:20:41 +00:00
|
|
|
} while (ENABLED(__AVR__)); // Loop forever on slower (AVR) boards
|
2016-09-12 01:21:54 +00:00
|
|
|
}
|