2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2016-03-24 18:01:20 +00:00
|
|
|
* Marlin 3D Printer Firmware
|
2017-03-18 15:15:54 +00:00
|
|
|
* Copyright (C) 2016, 2017 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2015-05-17 08:44:53 +00:00
|
|
|
*
|
|
|
|
* 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/>.
|
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
|
|
|
|
2016-11-19 03:54:38 +00:00
|
|
|
#include "Marlin.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
|
2017-06-17 23:36:10 +00:00
|
|
|
#ifdef ARDUINO
|
2017-09-06 11:28:33 +00:00
|
|
|
#include <pins_arduino.h>
|
2017-06-17 23:36:10 +00:00
|
|
|
#endif
|
2017-09-06 11:28:33 +00:00
|
|
|
#include <math.h>
|
|
|
|
#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
|
|
|
|
2017-09-14 20:33:07 +00:00
|
|
|
#if HAS_BUZZER && DISABLED(LCD_USE_I2C_BUZZER)
|
|
|
|
#include "libs/buzzer.h"
|
|
|
|
#endif
|
|
|
|
|
2017-09-17 23:45:21 +00:00
|
|
|
#if ENABLED(DIGIPOT_I2C)
|
|
|
|
#include "feature/digipot/digipot.h"
|
|
|
|
#endif
|
|
|
|
|
2017-09-18 05:06:16 +00:00
|
|
|
#if ENABLED(MIXING_EXTRUDER)
|
|
|
|
#include "feature/mixing.h"
|
|
|
|
#endif
|
|
|
|
|
2016-11-19 03:54:38 +00:00
|
|
|
#if ENABLED(BEZIER_CURVE_SUPPORT)
|
2017-09-06 11:28:33 +00:00
|
|
|
#include "module/planner_bezier.h"
|
2016-11-19 03:54:38 +00:00
|
|
|
#endif
|
|
|
|
|
2017-08-25 22:03:07 +00:00
|
|
|
#if ENABLED(MAX7219_DEBUG)
|
2017-09-08 19:47:47 +00:00
|
|
|
#include "feature/Max7219_Debug_LEDs.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
|
|
|
|
|
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 HAS_DIGIPOTSS
|
|
|
|
#include <SPI.h>
|
|
|
|
#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)
|
2017-09-06 11:28:33 +00:00
|
|
|
#include "feature/I2CPositionEncoder.h"
|
2017-06-09 12:06:23 +00:00
|
|
|
#endif
|
|
|
|
|
2016-11-19 03:54:38 +00:00
|
|
|
#if ENABLED(ENDSTOP_INTERRUPTS_FEATURE)
|
2017-09-06 11:28:33 +00:00
|
|
|
#include "HAL/HAL_endstop_interrupts.h"
|
2016-11-19 03:54:38 +00:00
|
|
|
#endif
|
|
|
|
|
2017-12-15 21:03:14 +00:00
|
|
|
#if HAS_TRINAMIC
|
|
|
|
#include "feature/tmc_util.h"
|
2017-09-17 23:34:04 +00:00
|
|
|
#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)
|
2016-09-26 06:30:34 +00:00
|
|
|
bool G38_move = false,
|
|
|
|
G38_endstop_hit = 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
|
|
|
|
|
2017-09-16 07:13:07 +00:00
|
|
|
#if ENABLED(ADVANCED_PAUSE_FEATURE) && ENABLED(PAUSE_PARK_NO_STEPPER_TIMEOUT)
|
|
|
|
#include "feature/pause.h"
|
|
|
|
#endif
|
2017-09-09 05:18:43 +00:00
|
|
|
|
2017-10-10 07:35:20 +00:00
|
|
|
#if ENABLED(FILAMENT_RUNOUT_SENSOR)
|
|
|
|
#include "feature/runout.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
|
|
|
|
|
2017-09-18 06:05:44 +00:00
|
|
|
#if (ENABLED(SWITCHING_EXTRUDER) && !DONT_SWITCH) || ENABLED(SWITCHING_NOZZLE) || ENABLED(PARKING_EXTRUDER)
|
|
|
|
#include "module/tool_change.h"
|
|
|
|
#endif
|
|
|
|
|
2017-09-18 06:44:59 +00:00
|
|
|
#if ENABLED(USE_CONTROLLER_FAN)
|
|
|
|
#include "feature/controllerfan.h"
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 07:56:19 +00:00
|
|
|
bool Running = true;
|
|
|
|
|
2016-10-05 02:32:37 +00:00
|
|
|
/**
|
|
|
|
* axis_homed
|
|
|
|
* Flags that each linear axis was homed.
|
|
|
|
* XYZ on cartesian, ABC on delta, ABZ on SCARA.
|
|
|
|
*
|
|
|
|
* axis_known_position
|
|
|
|
* Flags that the position is known in each linear axis. Set when homed.
|
|
|
|
* Cleared whenever a stepper powers off, potentially losing its position.
|
|
|
|
*/
|
|
|
|
bool axis_homed[XYZ] = { false }, axis_known_position[XYZ] = { false };
|
2015-04-08 07:56:19 +00:00
|
|
|
|
2016-05-31 15:26:08 +00:00
|
|
|
#if ENABLED(TEMPERATURE_UNITS_SUPPORT)
|
|
|
|
TempUnit input_temp_units = TEMPUNIT_C;
|
|
|
|
#endif
|
|
|
|
|
2016-03-06 02:27:45 +00:00
|
|
|
#if FAN_COUNT > 0
|
2017-05-03 22:12:14 +00:00
|
|
|
int16_t fanSpeeds[FAN_COUNT] = { 0 };
|
2017-10-30 05:10:00 +00:00
|
|
|
#if ENABLED(EXTRA_FAN_SPEED)
|
2017-10-16 06:41:45 +00:00
|
|
|
int16_t old_fanSpeeds[FAN_COUNT],
|
|
|
|
new_fanSpeeds[FAN_COUNT];
|
|
|
|
#endif
|
2017-05-07 11:06:06 +00:00
|
|
|
#if ENABLED(PROBING_FANS_OFF)
|
|
|
|
bool fans_paused = false;
|
|
|
|
int16_t paused_fanSpeeds[FAN_COUNT] = { 0 };
|
|
|
|
#endif
|
2016-03-06 02:27:45 +00:00
|
|
|
#endif
|
|
|
|
|
2016-10-07 03:06:33 +00:00
|
|
|
// For M109 and M190, this flag may be cleared (by M108) to exit the wait loop
|
2016-07-07 02:59:19 +00:00
|
|
|
volatile 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
|
2016-09-15 07:53:46 +00:00
|
|
|
volatile bool wait_for_user = false;
|
2016-09-12 01:51:53 +00:00
|
|
|
#endif
|
|
|
|
|
2015-04-03 22:45:41 +00:00
|
|
|
// Inactivity shutdown
|
2017-09-17 04:57:09 +00:00
|
|
|
millis_t max_inactive_time = 0,
|
|
|
|
stepper_inactive_time = (DEFAULT_STEPPER_DEACTIVE_TIME) * 1000UL;
|
2016-04-18 06:13:07 +00:00
|
|
|
|
2017-09-08 20:35:25 +00:00
|
|
|
#ifdef CHDK
|
|
|
|
millis_t chdkHigh = 0;
|
|
|
|
bool chdkActive = false;
|
|
|
|
#endif
|
2016-10-02 06:48:17 +00:00
|
|
|
|
2017-09-08 20:35:25 +00:00
|
|
|
#if ENABLED(PID_EXTRUSION_SCALING)
|
|
|
|
int lpq_len = 20;
|
|
|
|
#endif
|
2016-08-19 06:11:41 +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
|
|
|
|
SET_INPUT_PULLUP(KILL_PIN);
|
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
|
|
|
#if ENABLED(FILAMENT_RUNOUT_SENSOR)
|
2013-06-06 14:36:52 +00:00
|
|
|
|
2017-09-08 20:35:25 +00:00
|
|
|
void setup_filrunoutpin() {
|
|
|
|
#if ENABLED(ENDSTOPPULLUP_FIL_RUNOUT)
|
|
|
|
SET_INPUT_PULLUP(FIL_RUNOUT_PIN);
|
|
|
|
#else
|
|
|
|
SET_INPUT(FIL_RUNOUT_PIN);
|
2016-06-02 02:48:17 +00:00
|
|
|
#endif
|
2017-09-08 20:35:25 +00:00
|
|
|
}
|
2016-03-31 00:19:54 +00:00
|
|
|
|
2017-09-08 20:35:25 +00:00
|
|
|
#endif
|
2016-07-05 08:42:33 +00:00
|
|
|
|
2017-09-08 20:35:25 +00:00
|
|
|
void setup_powerhold() {
|
|
|
|
#if HAS_SUICIDE
|
|
|
|
OUT_WRITE(SUICIDE_PIN, HIGH);
|
2016-07-08 13:59:33 +00:00
|
|
|
#endif
|
2017-09-08 20:35:25 +00:00
|
|
|
#if HAS_POWER_SWITCH
|
|
|
|
#if ENABLED(PS_DEFAULT_OFF)
|
2018-02-06 06:22:30 +00:00
|
|
|
PSU_OFF();
|
2017-09-08 20:35:25 +00:00
|
|
|
#else
|
2018-02-06 06:22:30 +00:00
|
|
|
PSU_ON();
|
2017-04-15 03:44:08 +00:00
|
|
|
#endif
|
|
|
|
#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
|
|
|
|
void disableStepperDrivers() {
|
|
|
|
OUT_WRITE(STEPPER_RESET_PIN, LOW); // drive it down to hold in reset motor driver chips
|
|
|
|
}
|
|
|
|
void enableStepperDrivers() { SET_INPUT(STEPPER_RESET_PIN); } // set to input, which allows it to be pulled high by pullups
|
|
|
|
#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
|
|
|
|
*/
|
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;
|
|
|
|
for (uint8_t i = 0; i < COUNT(sensitive_pins); i++) {
|
|
|
|
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
|
|
|
|
2017-09-06 11:28:33 +00:00
|
|
|
void quickstop_stepper() {
|
|
|
|
stepper.quick_stop();
|
|
|
|
stepper.synchronize();
|
|
|
|
set_current_from_steppers_for_axis(ALL_AXES);
|
|
|
|
SYNC_PLAN_POSITION_KINEMATIC();
|
|
|
|
}
|
2016-10-05 19:34:07 +00:00
|
|
|
|
2015-04-04 02:25:22 +00:00
|
|
|
void enable_all_steppers() {
|
2017-04-11 16:10:26 +00:00
|
|
|
enable_X();
|
|
|
|
enable_Y();
|
|
|
|
enable_Z();
|
|
|
|
enable_E0();
|
|
|
|
enable_E1();
|
|
|
|
enable_E2();
|
|
|
|
enable_E3();
|
|
|
|
enable_E4();
|
2015-04-04 02:25:22 +00:00
|
|
|
}
|
|
|
|
|
2017-03-18 02:12:19 +00:00
|
|
|
void disable_e_steppers() {
|
2017-04-11 16:10:26 +00:00
|
|
|
disable_E0();
|
|
|
|
disable_E1();
|
|
|
|
disable_E2();
|
|
|
|
disable_E3();
|
|
|
|
disable_E4();
|
2015-04-03 22:31:35 +00:00
|
|
|
}
|
|
|
|
|
2018-01-04 11:06:34 +00:00
|
|
|
void disable_e_stepper(const uint8_t e) {
|
|
|
|
switch (e) {
|
|
|
|
case 0: disable_E0(); break;
|
|
|
|
case 1: disable_E1(); break;
|
|
|
|
case 2: disable_E2(); break;
|
|
|
|
case 3: disable_E3(); break;
|
|
|
|
case 4: disable_E4(); break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-18 02:12:19 +00:00
|
|
|
void disable_all_steppers() {
|
2017-04-11 16:10:26 +00:00
|
|
|
disable_X();
|
|
|
|
disable_Y();
|
|
|
|
disable_Z();
|
2017-03-18 02:12:19 +00:00
|
|
|
disable_e_steppers();
|
|
|
|
}
|
|
|
|
|
2015-04-03 22:31:35 +00:00
|
|
|
/**
|
2015-04-04 06:42:50 +00:00
|
|
|
* Manage several activities:
|
|
|
|
* - Check for Filament Runout
|
|
|
|
* - Keep the command buffer full
|
|
|
|
* - Check for maximum inactive time between commands
|
|
|
|
* - Check for maximum inactive time between stepper commands
|
|
|
|
* - Check if pin CHDK needs to go LOW
|
|
|
|
* - 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)
|
2015-04-03 22:31:35 +00:00
|
|
|
*/
|
|
|
|
void manage_inactivity(bool ignore_stepper_queue/*=false*/) {
|
2015-08-05 11:40:36 +00:00
|
|
|
|
2016-06-20 01:05:57 +00:00
|
|
|
#if ENABLED(FILAMENT_RUNOUT_SENSOR)
|
2018-01-22 10:29:58 +00:00
|
|
|
if ((IS_SD_PRINTING || print_job_timer.isRunning())
|
|
|
|
&& READ(FIL_RUNOUT_PIN) == FIL_RUNOUT_INVERTING
|
|
|
|
&& thermalManager.targetHotEnoughToExtrude(active_extruder)
|
|
|
|
)
|
2016-04-18 06:16:49 +00:00
|
|
|
handle_filament_runout();
|
2015-04-03 22:31:35 +00:00
|
|
|
#endif
|
|
|
|
|
2016-03-28 12:25:27 +00:00
|
|
|
if (commands_in_queue < BUFSIZE) 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
|
|
|
|
2017-09-16 01:44:40 +00:00
|
|
|
if (max_inactive_time && ELAPSED(ms, gcode.previous_cmd_ms + max_inactive_time)) {
|
2017-06-09 15:51:23 +00:00
|
|
|
SERIAL_ERROR_START();
|
2017-05-20 08:03:08 +00:00
|
|
|
SERIAL_ECHOLNPAIR(MSG_KILL_INACTIVE_TIME, parser.command_ptr);
|
2017-03-14 17:24:46 +00:00
|
|
|
kill(PSTR(MSG_KILLED));
|
|
|
|
}
|
2017-02-10 06:13:58 +00:00
|
|
|
|
|
|
|
// Prevent steppers timing-out in the middle of M600
|
2017-05-26 18:01:02 +00:00
|
|
|
#if ENABLED(ADVANCED_PAUSE_FEATURE) && ENABLED(PAUSE_PARK_NO_STEPPER_TIMEOUT)
|
2017-12-30 10:03:41 +00:00
|
|
|
#define MOVE_AWAY_TEST !did_pause_print
|
2017-02-10 06:13:58 +00:00
|
|
|
#else
|
2017-05-26 18:01:02 +00:00
|
|
|
#define MOVE_AWAY_TEST true
|
2017-01-21 23:10:57 +00:00
|
|
|
#endif
|
2017-03-14 07:25:34 +00:00
|
|
|
|
2017-09-16 01:44:40 +00:00
|
|
|
if (MOVE_AWAY_TEST && stepper_inactive_time && ELAPSED(ms, gcode.previous_cmd_ms + stepper_inactive_time)
|
2016-04-28 01:06:32 +00:00
|
|
|
&& !ignore_stepper_queue && !planner.blocks_queued()) {
|
2016-03-14 05:15:45 +00:00
|
|
|
#if ENABLED(DISABLE_INACTIVE_X)
|
2017-04-11 16:10:26 +00:00
|
|
|
disable_X();
|
2015-06-01 08:42:28 +00:00
|
|
|
#endif
|
2016-03-14 05:15:45 +00:00
|
|
|
#if ENABLED(DISABLE_INACTIVE_Y)
|
2017-04-11 16:10:26 +00:00
|
|
|
disable_Y();
|
2015-06-01 08:42:28 +00:00
|
|
|
#endif
|
2016-03-14 05:15:45 +00:00
|
|
|
#if ENABLED(DISABLE_INACTIVE_Z)
|
2017-04-11 16:10:26 +00:00
|
|
|
disable_Z();
|
2015-06-01 08:42:28 +00:00
|
|
|
#endif
|
2016-03-14 05:15:45 +00:00
|
|
|
#if ENABLED(DISABLE_INACTIVE_E)
|
2017-03-18 02:12:19 +00:00
|
|
|
disable_e_steppers();
|
2015-06-01 08:42:28 +00:00
|
|
|
#endif
|
2017-12-25 13:46:19 +00:00
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(ULTIPANEL) // Only needed with an LCD
|
2017-09-08 20:35:25 +00:00
|
|
|
ubl.lcd_map_control = defer_return_to_status = false;
|
2017-06-12 23:26:49 +00:00
|
|
|
#endif
|
2015-06-01 08:42:28 +00:00
|
|
|
}
|
2015-03-07 20:43:15 +00:00
|
|
|
|
2015-04-04 06:42:50 +00:00
|
|
|
#ifdef CHDK // Check if pin should be set to LOW after M240 set it to HIGH
|
2017-03-17 02:49:39 +00:00
|
|
|
if (chdkActive && ELAPSED(ms, chdkHigh + CHDK_DELAY)) {
|
2014-03-10 20:57:08 +00:00
|
|
|
chdkActive = false;
|
|
|
|
WRITE(CHDK, LOW);
|
|
|
|
}
|
|
|
|
#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;
|
2015-04-03 22:31:35 +00:00
|
|
|
if (!READ(KILL_PIN))
|
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) {
|
2017-06-09 15:51:23 +00:00
|
|
|
SERIAL_ERROR_START();
|
2017-03-14 17:24:46 +00:00
|
|
|
SERIAL_ERRORLNPGM(MSG_KILL_BUTTON);
|
|
|
|
kill(PSTR(MSG_KILLED));
|
|
|
|
}
|
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
|
2014-12-28 18:54:06 +00:00
|
|
|
// Check to see if we have to home, use poor man's debouncer
|
|
|
|
// ---------------------------------------------------------
|
2015-04-03 22:45:41 +00:00
|
|
|
static int homeDebounceCount = 0; // poor man's debouncing count
|
2015-09-13 18:20:43 +00:00
|
|
|
const int HOME_DEBOUNCE_DELAY = 2500;
|
2016-12-06 20:22:34 +00:00
|
|
|
if (!IS_SD_PRINTING && !READ(HOME_PIN)) {
|
2015-04-03 22:31:35 +00:00
|
|
|
if (!homeDebounceCount) {
|
2016-02-21 01:35:35 +00:00
|
|
|
enqueue_and_echo_commands_P(PSTR("G28"));
|
2015-05-04 17:48:49 +00:00
|
|
|
LCD_MESSAGEPGM(MSG_AUTO_HOME);
|
2015-04-03 22:31:35 +00:00
|
|
|
}
|
|
|
|
if (homeDebounceCount < HOME_DEBOUNCE_DELAY)
|
|
|
|
homeDebounceCount++;
|
|
|
|
else
|
|
|
|
homeDebounceCount = 0;
|
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
|
|
|
|
2017-05-04 21:38:29 +00:00
|
|
|
#if ENABLED(USE_CONTROLLER_FAN)
|
2017-09-18 06:44:59 +00:00
|
|
|
controllerfan_update(); // Check if fan should be turned on to cool stepper drivers down
|
2012-11-06 11:06:41 +00:00
|
|
|
#endif
|
2015-04-03 22:31:35 +00:00
|
|
|
|
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
|
|
|
|
&& ELAPSED(ms, gcode.previous_cmd_ms + (EXTRUDER_RUNOUT_SECONDS) * 1000UL)
|
|
|
|
&& !planner.blocks_queued()
|
|
|
|
) {
|
2016-06-28 22:06:56 +00:00
|
|
|
#if ENABLED(SWITCHING_EXTRUDER)
|
2017-07-06 17:10:06 +00:00
|
|
|
const bool oldstatus = E0_ENABLE_READ;
|
2017-04-11 16:10:26 +00:00
|
|
|
enable_E0();
|
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) {
|
2017-07-06 17:10:06 +00:00
|
|
|
default: oldstatus = E0_ENABLE_READ; enable_E0(); break;
|
2016-06-28 22:06:56 +00:00
|
|
|
#if E_STEPPERS > 1
|
2017-04-18 19:39:45 +00:00
|
|
|
case 1: oldstatus = E1_ENABLE_READ; enable_E1(); break;
|
2016-06-28 22:06:56 +00:00
|
|
|
#if E_STEPPERS > 2
|
2017-04-18 19:39:45 +00:00
|
|
|
case 2: oldstatus = E2_ENABLE_READ; enable_E2(); break;
|
2016-06-28 22:06:56 +00:00
|
|
|
#if E_STEPPERS > 3
|
2017-04-18 19:39:45 +00:00
|
|
|
case 3: oldstatus = E3_ENABLE_READ; enable_E3(); break;
|
2017-04-06 21:46:52 +00:00
|
|
|
#if E_STEPPERS > 4
|
2017-04-18 19:39:45 +00:00
|
|
|
case 4: oldstatus = E4_ENABLE_READ; enable_E4(); break;
|
2017-04-06 21:46:52 +00:00
|
|
|
#endif // E_STEPPERS > 4
|
|
|
|
#endif // E_STEPPERS > 3
|
|
|
|
#endif // E_STEPPERS > 2
|
|
|
|
#endif // E_STEPPERS > 1
|
2015-10-03 06:08:58 +00:00
|
|
|
}
|
2016-06-28 22:06:56 +00:00
|
|
|
#endif // !SWITCHING_EXTRUDER
|
|
|
|
|
2017-12-14 03:54:39 +00:00
|
|
|
gcode.refresh_cmd_timeout();
|
2016-10-09 20:21:36 +00:00
|
|
|
|
2017-03-20 21:41:59 +00:00
|
|
|
const float olde = current_position[E_AXIS];
|
|
|
|
current_position[E_AXIS] += EXTRUDER_RUNOUT_EXTRUDE;
|
|
|
|
planner.buffer_line_kinematic(current_position, MMM_TO_MMS(EXTRUDER_RUNOUT_SPEED), active_extruder);
|
|
|
|
current_position[E_AXIS] = olde;
|
|
|
|
planner.set_e_position_mm(olde);
|
2016-04-27 14:15:20 +00:00
|
|
|
stepper.synchronize();
|
2016-06-28 22:06:56 +00:00
|
|
|
#if ENABLED(SWITCHING_EXTRUDER)
|
|
|
|
E0_ENABLE_WRITE(oldstatus);
|
|
|
|
#else
|
|
|
|
switch (active_extruder) {
|
2017-04-18 19:39:45 +00:00
|
|
|
case 0: E0_ENABLE_WRITE(oldstatus); break;
|
2016-06-28 22:06:56 +00:00
|
|
|
#if E_STEPPERS > 1
|
2017-04-18 19:39:45 +00:00
|
|
|
case 1: E1_ENABLE_WRITE(oldstatus); break;
|
2016-06-28 22:06:56 +00:00
|
|
|
#if E_STEPPERS > 2
|
2017-04-18 19:39:45 +00:00
|
|
|
case 2: E2_ENABLE_WRITE(oldstatus); break;
|
2016-06-28 22:06:56 +00:00
|
|
|
#if E_STEPPERS > 3
|
2017-04-18 19:39:45 +00:00
|
|
|
case 3: E3_ENABLE_WRITE(oldstatus); break;
|
2017-04-06 21:46:52 +00:00
|
|
|
#if E_STEPPERS > 4
|
2017-04-18 19:39:45 +00:00
|
|
|
case 4: E4_ENABLE_WRITE(oldstatus); break;
|
2017-04-06 21:46:52 +00:00
|
|
|
#endif // E_STEPPERS > 4
|
|
|
|
#endif // E_STEPPERS > 3
|
|
|
|
#endif // E_STEPPERS > 2
|
|
|
|
#endif // E_STEPPERS > 1
|
2016-06-28 22:06:56 +00:00
|
|
|
}
|
|
|
|
#endif // !SWITCHING_EXTRUDER
|
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
|
2017-10-21 16:42:26 +00:00
|
|
|
set_destination_from_current();
|
2016-06-11 02:23:41 +00:00
|
|
|
prepare_move_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
|
|
|
|
2015-07-31 05:24:43 +00:00
|
|
|
#if ENABLED(TEMP_STAT_LEDS)
|
2015-04-03 22:31:35 +00:00
|
|
|
handle_status_leds();
|
2013-10-20 10:12:35 +00:00
|
|
|
#endif
|
2015-04-03 22:31:35 +00:00
|
|
|
|
2017-12-15 21:03:14 +00:00
|
|
|
#if ENABLED(MONITOR_DRIVER_STATUS)
|
|
|
|
monitor_tmc_driver();
|
2017-03-07 05:00:43 +00:00
|
|
|
#endif
|
|
|
|
|
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;
|
|
|
|
}
|
2012-11-06 11:06:41 +00:00
|
|
|
}
|
|
|
|
|
2016-09-13 07:11:45 +00:00
|
|
|
/**
|
|
|
|
* Standard idle routine keeps the machine alive
|
|
|
|
*/
|
|
|
|
void idle(
|
2017-05-26 18:01:02 +00:00
|
|
|
#if ENABLED(ADVANCED_PAUSE_FEATURE)
|
2016-09-13 07:11:45 +00:00
|
|
|
bool no_stepper_sleep/*=false*/
|
|
|
|
#endif
|
|
|
|
) {
|
2017-08-25 22:03:07 +00:00
|
|
|
#if ENABLED(MAX7219_DEBUG)
|
|
|
|
Max7219_idle_tasks();
|
|
|
|
#endif // MAX7219_DEBUG
|
|
|
|
|
2016-09-13 07:11:45 +00:00
|
|
|
lcd_update();
|
2016-11-09 00:03:40 +00:00
|
|
|
|
2017-09-09 04:49:49 +00:00
|
|
|
#if ENABLED(HOST_KEEPALIVE_FEATURE)
|
|
|
|
gcode.host_keepalive();
|
|
|
|
#endif
|
2016-11-09 00:03:40 +00:00
|
|
|
|
|
|
|
#if ENABLED(AUTO_REPORT_TEMPERATURES) && (HAS_TEMP_HOTEND || HAS_TEMP_BED)
|
2017-09-16 18:05:01 +00:00
|
|
|
thermalManager.auto_report_temperatures();
|
2016-11-09 00:03:40 +00:00
|
|
|
#endif
|
|
|
|
|
2016-09-13 07:11:45 +00:00
|
|
|
manage_inactivity(
|
2017-05-26 18:01:02 +00:00
|
|
|
#if ENABLED(ADVANCED_PAUSE_FEATURE)
|
2016-09-13 07:11:45 +00:00
|
|
|
no_stepper_sleep
|
|
|
|
#endif
|
|
|
|
);
|
|
|
|
|
|
|
|
thermalManager.manage_heater();
|
|
|
|
|
|
|
|
#if ENABLED(PRINTCOUNTER)
|
|
|
|
print_job_timer.tick();
|
|
|
|
#endif
|
|
|
|
|
2016-10-05 02:31:50 +00:00
|
|
|
#if HAS_BUZZER && DISABLED(LCD_USE_I2C_BUZZER)
|
2016-09-13 07:11:45 +00:00
|
|
|
buzzer.tick();
|
|
|
|
#endif
|
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;
|
|
|
|
if (planner.blocks_queued() && ELAPSED(millis(), i2cpem_next_update_ms)) {
|
2017-06-09 12:06:23 +00:00
|
|
|
I2CPEM.update();
|
2018-02-08 09:57:11 +00:00
|
|
|
i2cpem_next_update_ms = millis() + I2CPE_MIN_UPD_TIME_MS;
|
2017-06-09 12:06:23 +00:00
|
|
|
}
|
|
|
|
#endif
|
2017-12-21 05:22:08 +00:00
|
|
|
|
|
|
|
#ifdef HAL_IDLETASK
|
|
|
|
HAL_idletask();
|
|
|
|
#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.
|
|
|
|
*/
|
2015-10-03 06:08:58 +00:00
|
|
|
void kill(const char* lcd_msg) {
|
2017-06-09 15:51:23 +00:00
|
|
|
SERIAL_ERROR_START();
|
2016-07-10 02:50:45 +00:00
|
|
|
SERIAL_ERRORLNPGM(MSG_ERR_KILLED);
|
|
|
|
|
2017-03-21 14:06:01 +00:00
|
|
|
thermalManager.disable_all_heaters();
|
|
|
|
disable_all_steppers();
|
2017-03-29 00:45:54 +00:00
|
|
|
|
2015-07-31 05:24:43 +00:00
|
|
|
#if ENABLED(ULTRA_LCD)
|
2016-07-10 02:50:45 +00:00
|
|
|
kill_screen(lcd_msg);
|
2015-10-04 15:33:55 +00:00
|
|
|
#else
|
|
|
|
UNUSED(lcd_msg);
|
2015-05-20 20:03:16 +00:00
|
|
|
#endif
|
2015-05-20 18:53:48 +00:00
|
|
|
|
2017-04-01 05:23:14 +00:00
|
|
|
_delay_ms(600); // Wait a short time (allows messages to get out before shutting down.
|
2012-11-06 11:06:41 +00:00
|
|
|
cli(); // Stop interrupts
|
2017-03-29 00:45:54 +00:00
|
|
|
|
2017-03-21 14:06:01 +00:00
|
|
|
_delay_ms(250); //Wait to ensure all interrupts routines stopped
|
|
|
|
thermalManager.disable_all_heaters(); //turn off heaters again
|
2013-06-06 22:49:25 +00:00
|
|
|
|
2017-07-28 04:42:01 +00:00
|
|
|
#ifdef ACTION_ON_KILL
|
2017-07-02 08:44:24 +00:00
|
|
|
SERIAL_ECHOLNPGM("//action:" ACTION_ON_KILL);
|
|
|
|
#endif
|
2017-07-07 02:24:30 +00:00
|
|
|
|
2015-03-30 23:50:05 +00:00
|
|
|
#if HAS_POWER_SWITCH
|
2016-12-03 04:40:18 +00:00
|
|
|
SET_INPUT(PS_ON_PIN);
|
2015-03-30 23:50:05 +00:00
|
|
|
#endif
|
|
|
|
|
2017-09-27 09:40:48 +00:00
|
|
|
#if HAS_SUICIDE
|
|
|
|
suicide();
|
|
|
|
#endif
|
|
|
|
|
2016-03-03 23:35:18 +00:00
|
|
|
while (1) {
|
2016-03-07 21:27:01 +00:00
|
|
|
#if ENABLED(USE_WATCHDOG)
|
|
|
|
watchdog_reset();
|
|
|
|
#endif
|
2016-03-03 23:35:18 +00:00
|
|
|
} // Wait for reset
|
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
|
|
|
|
|
|
|
|
#if ENABLED(PROBING_FANS_OFF)
|
|
|
|
if (fans_paused) fans_pause(false); // put things back the way they were
|
|
|
|
#endif
|
|
|
|
|
2015-05-17 08:47:02 +00:00
|
|
|
if (IsRunning()) {
|
|
|
|
Stopped_gcode_LastN = gcode_LastN; // Save last g_code for restart
|
2017-06-09 15:51:23 +00:00
|
|
|
SERIAL_ERROR_START();
|
2015-05-17 08:47:02 +00:00
|
|
|
SERIAL_ERRORLNPGM(MSG_ERR_STOPPED);
|
|
|
|
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
|
|
|
|
Running = false;
|
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
|
|
|
|
*/
|
|
|
|
void setup() {
|
|
|
|
|
2017-12-21 05:42:46 +00:00
|
|
|
#ifdef HAL_INIT
|
|
|
|
HAL_init();
|
|
|
|
#endif
|
|
|
|
|
2017-08-25 22:03:07 +00:00
|
|
|
#if ENABLED(MAX7219_DEBUG)
|
|
|
|
Max7219_init();
|
|
|
|
#endif
|
|
|
|
|
2017-11-13 21:23:30 +00:00
|
|
|
#if ENABLED(DISABLE_JTAG)
|
2016-09-12 01:21:54 +00:00
|
|
|
// Disable JTAG on AT90USB chips to free up pins for IO
|
|
|
|
MCUCR = 0x80;
|
|
|
|
MCUCR = 0x80;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(FILAMENT_RUNOUT_SENSOR)
|
|
|
|
setup_filrunoutpin();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
setup_killpin();
|
|
|
|
|
|
|
|
setup_powerhold();
|
|
|
|
|
|
|
|
#if HAS_STEPPER_RESET
|
|
|
|
disableStepperDrivers();
|
|
|
|
#endif
|
|
|
|
|
2017-11-05 14:49:38 +00:00
|
|
|
#if NUM_SERIAL > 0
|
|
|
|
MYSERIAL0.begin(BAUDRATE);
|
|
|
|
#if NUM_SERIAL > 1
|
|
|
|
MYSERIAL1.begin(BAUDRATE);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if NUM_SERIAL > 0
|
|
|
|
uint32_t serial_connect_timeout = millis() + 1000UL;
|
|
|
|
while(!MYSERIAL0 && PENDING(millis(), serial_connect_timeout)) { /*nada*/ }
|
|
|
|
#if NUM_SERIAL > 1
|
|
|
|
serial_connect_timeout = millis() + 1000UL;
|
|
|
|
while(!MYSERIAL1 && PENDING(millis(), serial_connect_timeout)) { /*nada*/ }
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2016-09-12 01:21:54 +00:00
|
|
|
SERIAL_PROTOCOLLNPGM("start");
|
2017-06-09 15:51:23 +00:00
|
|
|
SERIAL_ECHO_START();
|
2016-09-12 01:21:54 +00:00
|
|
|
|
2018-02-10 20:08:53 +00:00
|
|
|
#if ENABLED(HAVE_TMC2130)
|
|
|
|
tmc_init_cs_pins();
|
|
|
|
#endif
|
|
|
|
#if ENABLED(HAVE_TMC2208)
|
|
|
|
tmc2208_serial_begin();
|
|
|
|
#endif
|
|
|
|
|
2016-09-12 01:21:54 +00:00
|
|
|
// Check startup - does nothing if bootloader sets MCUSR to 0
|
2017-06-17 23:36:10 +00:00
|
|
|
byte mcu = HAL_get_reset_source();
|
2017-06-16 19:20:58 +00:00
|
|
|
if (mcu & 1) SERIAL_ECHOLNPGM(MSG_POWERUP);
|
|
|
|
if (mcu & 2) SERIAL_ECHOLNPGM(MSG_EXTERNAL_RESET);
|
|
|
|
if (mcu & 4) SERIAL_ECHOLNPGM(MSG_BROWNOUT_RESET);
|
|
|
|
if (mcu & 8) SERIAL_ECHOLNPGM(MSG_WATCHDOG_RESET);
|
2016-09-12 01:21:54 +00:00
|
|
|
if (mcu & 32) SERIAL_ECHOLNPGM(MSG_SOFTWARE_RESET);
|
2017-06-17 23:36:10 +00:00
|
|
|
HAL_clear_reset_source();
|
|
|
|
|
|
|
|
#if ENABLED(USE_WATCHDOG) //reinit watchdog after HAL_get_reset_source call
|
|
|
|
watchdog_init();
|
|
|
|
#endif
|
2016-09-12 01:21:54 +00:00
|
|
|
|
|
|
|
SERIAL_ECHOPGM(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)
|
2017-06-09 15:51:23 +00:00
|
|
|
SERIAL_ECHO_START();
|
2016-09-12 22:49:35 +00:00
|
|
|
SERIAL_ECHOPGM(MSG_CONFIGURATION_VER);
|
|
|
|
SERIAL_ECHOPGM(STRING_DISTRIBUTION_DATE);
|
|
|
|
SERIAL_ECHOLNPGM(MSG_AUTHOR STRING_CONFIG_H_AUTHOR);
|
2017-08-21 21:30:08 +00:00
|
|
|
SERIAL_ECHO_START();
|
2016-09-12 22:49:35 +00:00
|
|
|
SERIAL_ECHOLNPGM("Compiled: " __DATE__);
|
|
|
|
#endif
|
2016-09-12 01:21:54 +00:00
|
|
|
|
2017-06-09 15:51:23 +00:00
|
|
|
SERIAL_ECHO_START();
|
2016-09-12 22:49:35 +00:00
|
|
|
SERIAL_ECHOPAIR(MSG_FREE_MEMORY, freeMemory());
|
|
|
|
SERIAL_ECHOLNPAIR(MSG_PLANNER_BUFFER_BYTES, (int)sizeof(block_t)*BLOCK_BUFFER_SIZE);
|
2016-09-12 01:21:54 +00:00
|
|
|
|
2017-09-08 03:33:16 +00:00
|
|
|
queue_setup();
|
2016-09-12 01:21:54 +00:00
|
|
|
|
|
|
|
// Load data from EEPROM if available (or use defaults)
|
|
|
|
// This also updates variables in the planner, elsewhere
|
2017-04-10 02:47:49 +00:00
|
|
|
(void)settings.load();
|
2016-09-12 01:21:54 +00:00
|
|
|
|
2017-04-15 02:41:21 +00:00
|
|
|
#if HAS_M206_COMMAND
|
2017-03-05 00:01:33 +00:00
|
|
|
// Initialize current position based on home_offset
|
2017-03-05 01:19:06 +00:00
|
|
|
COPY(current_position, home_offset);
|
2017-03-05 00:01:33 +00:00
|
|
|
#else
|
|
|
|
ZERO(current_position);
|
|
|
|
#endif
|
2016-09-12 01:21:54 +00:00
|
|
|
|
|
|
|
// Vital to init stepper/planner equivalent for current_position
|
|
|
|
SYNC_PLAN_POSITION_KINEMATIC();
|
|
|
|
|
|
|
|
thermalManager.init(); // Initialize temperature loop
|
|
|
|
|
|
|
|
stepper.init(); // Initialize stepper, this enables interrupts!
|
2017-09-08 20:35:25 +00:00
|
|
|
|
|
|
|
#if HAS_SERVOS
|
|
|
|
servo_init();
|
|
|
|
#endif
|
2016-09-12 01:21:54 +00:00
|
|
|
|
2017-11-19 19:39:46 +00:00
|
|
|
#if HAS_Z_SERVO_ENDSTOP
|
|
|
|
servo_probe_init();
|
|
|
|
#endif
|
|
|
|
|
2016-11-01 11:24:21 +00:00
|
|
|
#if HAS_PHOTOGRAPH
|
|
|
|
OUT_WRITE(PHOTOGRAPH_PIN, LOW);
|
|
|
|
#endif
|
|
|
|
|
2016-10-05 19:34:07 +00:00
|
|
|
#if HAS_CASE_LIGHT
|
2016-11-28 05:51:51 +00:00
|
|
|
update_case_light();
|
2016-10-05 19:34:07 +00:00
|
|
|
#endif
|
|
|
|
|
2017-04-07 18:52:45 +00:00
|
|
|
#if ENABLED(SPINDLE_LASER_ENABLE)
|
|
|
|
OUT_WRITE(SPINDLE_LASER_ENABLE_PIN, !SPINDLE_LASER_ENABLE_INVERT); // init spindle to off
|
|
|
|
#if SPINDLE_DIR_CHANGE
|
|
|
|
OUT_WRITE(SPINDLE_DIR_PIN, SPINDLE_INVERT_DIR ? 255 : 0); // init rotation to clockwise (M3)
|
|
|
|
#endif
|
2017-09-06 11:28:33 +00:00
|
|
|
#if ENABLED(SPINDLE_LASER_PWM) && defined(SPINDLE_LASER_PWM_PIN) && SPINDLE_LASER_PWM_PIN >= 0
|
2017-04-07 18:52:45 +00:00
|
|
|
SET_OUTPUT(SPINDLE_LASER_PWM_PIN);
|
|
|
|
analogWrite(SPINDLE_LASER_PWM_PIN, SPINDLE_LASER_PWM_INVERT ? 255 : 0); // set to lowest speed
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2016-09-12 01:21:54 +00:00
|
|
|
#if HAS_BED_PROBE
|
|
|
|
endstops.enable_z_probe(false);
|
|
|
|
#endif
|
|
|
|
|
2017-05-04 21:38:29 +00:00
|
|
|
#if ENABLED(USE_CONTROLLER_FAN)
|
2017-05-03 01:18:31 +00:00
|
|
|
SET_OUTPUT(CONTROLLER_FAN_PIN); //Set pin used for driver cooling fan
|
2016-09-12 01:21:54 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAS_STEPPER_RESET
|
|
|
|
enableStepperDrivers();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(DIGIPOT_I2C)
|
|
|
|
digipot_i2c_init();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(DAC_STEPPER_CURRENT)
|
|
|
|
dac_init();
|
|
|
|
#endif
|
|
|
|
|
2017-04-14 21:36:02 +00:00
|
|
|
#if (ENABLED(Z_PROBE_SLED) || ENABLED(SOLENOID_PROBE)) && HAS_SOLENOID_1
|
|
|
|
OUT_WRITE(SOL1_PIN, LOW); // turn it off
|
|
|
|
#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)
|
|
|
|
OUT_WRITE(STAT_LED_RED_PIN, LOW); // turn it off
|
2016-09-12 01:21:54 +00:00
|
|
|
#endif
|
|
|
|
|
2016-09-24 20:33:29 +00:00
|
|
|
#if PIN_EXISTS(STAT_LED_BLUE)
|
|
|
|
OUT_WRITE(STAT_LED_BLUE_PIN, LOW); // turn it off
|
2016-09-12 01:21:54 +00:00
|
|
|
#endif
|
|
|
|
|
2017-11-28 07:07:10 +00:00
|
|
|
#if HAS_COLOR_LEDS
|
|
|
|
leds.setup();
|
2017-07-13 15:01:21 +00:00
|
|
|
#endif
|
|
|
|
|
2017-04-14 21:54:53 +00:00
|
|
|
#if ENABLED(RGB_LED) || ENABLED(RGBW_LED)
|
2017-03-18 15:17:00 +00:00
|
|
|
SET_OUTPUT(RGB_LED_R_PIN);
|
|
|
|
SET_OUTPUT(RGB_LED_G_PIN);
|
|
|
|
SET_OUTPUT(RGB_LED_B_PIN);
|
2017-04-14 21:54:53 +00:00
|
|
|
#if ENABLED(RGBW_LED)
|
|
|
|
SET_OUTPUT(RGB_LED_W_PIN);
|
|
|
|
#endif
|
2016-11-30 01:51:13 +00:00
|
|
|
#endif
|
|
|
|
|
2017-06-02 18:57:31 +00:00
|
|
|
#if ENABLED(MK2_MULTIPLEXER)
|
|
|
|
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
|
|
|
|
fanmux_init();
|
|
|
|
#endif
|
2017-08-25 22:03:07 +00:00
|
|
|
|
2016-09-12 01:21:54 +00:00
|
|
|
lcd_init();
|
2017-07-02 05:35:41 +00:00
|
|
|
|
2016-09-12 01:21:54 +00:00
|
|
|
#if ENABLED(SHOW_BOOTSCREEN)
|
2017-11-03 10:58:20 +00:00
|
|
|
lcd_bootscreen();
|
2016-09-12 01:21:54 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1
|
2017-09-18 05:06:16 +00:00
|
|
|
mixing_tools_init();
|
2016-09-12 01:21:54 +00:00
|
|
|
#endif
|
|
|
|
|
2017-01-22 00:10:02 +00:00
|
|
|
#if ENABLED(BLTOUCH)
|
2017-09-08 20:35:25 +00:00
|
|
|
bltouch_init();
|
2017-01-22 00:10:02 +00:00
|
|
|
#endif
|
|
|
|
|
2017-06-09 12:06:23 +00:00
|
|
|
#if ENABLED(I2C_POSITION_ENCODERS)
|
|
|
|
I2CPEM.init();
|
|
|
|
#endif
|
|
|
|
|
2016-09-12 01:21:54 +00:00
|
|
|
#if ENABLED(EXPERIMENTAL_I2CBUS) && I2C_SLAVE_ADDRESS > 0
|
|
|
|
i2c.onReceive(i2c_on_receive);
|
|
|
|
i2c.onRequest(i2c_on_request);
|
|
|
|
#endif
|
2016-11-05 21:38:48 +00:00
|
|
|
|
|
|
|
#if ENABLED(ENDSTOP_INTERRUPTS_FEATURE)
|
2016-11-19 03:53:45 +00:00
|
|
|
setup_endstop_interrupts();
|
2016-11-05 21:38:48 +00:00
|
|
|
#endif
|
2017-06-05 22:41:38 +00:00
|
|
|
|
2017-08-18 09:11:00 +00:00
|
|
|
#if ENABLED(SWITCHING_EXTRUDER) && !DONT_SWITCH
|
2017-06-04 13:40:57 +00:00
|
|
|
move_extruder_servo(0); // Initialize extruder servo
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(SWITCHING_NOZZLE)
|
|
|
|
move_nozzle_servo(0); // Initialize nozzle servo
|
|
|
|
#endif
|
2017-08-21 21:30:08 +00:00
|
|
|
|
2017-08-13 21:35:59 +00:00
|
|
|
#if ENABLED(PARKING_EXTRUDER)
|
2017-09-18 06:05:44 +00:00
|
|
|
pe_magnet_init();
|
2017-08-13 21:35:59 +00:00
|
|
|
#endif
|
2016-09-12 01:21:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The main Marlin program loop
|
|
|
|
*
|
|
|
|
* - Save or log commands to SD
|
|
|
|
* - Process available commands (if not saving)
|
|
|
|
* - Call heater manager
|
|
|
|
* - Call inactivity manager
|
|
|
|
* - Call endstop manager
|
|
|
|
* - Call LCD update
|
|
|
|
*/
|
|
|
|
void loop() {
|
|
|
|
if (commands_in_queue < BUFSIZE) get_available_commands();
|
|
|
|
|
|
|
|
#if ENABLED(SDSUPPORT)
|
|
|
|
card.checkautostart(false);
|
|
|
|
#endif
|
|
|
|
|
2017-09-08 03:33:16 +00:00
|
|
|
advance_command_queue();
|
2016-09-12 01:21:54 +00:00
|
|
|
|
|
|
|
endstops.report_state();
|
|
|
|
idle();
|
|
|
|
}
|