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]
|
2016-03-24 18:01:20 +00:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 04:57:50 +00:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2016-03-24 18:01:20 +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
|
2020-07-23 03:20:14 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2016-03-24 18:01:20 +00:00
|
|
|
*
|
|
|
|
*/
|
2018-11-04 08:25:55 +00:00
|
|
|
#pragma once
|
2011-11-04 17:02:56 +00:00
|
|
|
|
2017-09-06 11:28:33 +00:00
|
|
|
#include "inc/MarlinConfig.h"
|
2016-07-26 06:04:19 +00:00
|
|
|
|
2017-06-03 18:19:55 +00:00
|
|
|
#ifdef DEBUG_GCODE_PARSER
|
2017-09-06 11:28:33 +00:00
|
|
|
#include "gcode/parser.h"
|
2017-06-03 18:19:55 +00:00
|
|
|
#endif
|
2011-12-22 13:55:45 +00:00
|
|
|
|
2017-11-19 19:59:40 +00:00
|
|
|
#include <math.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2017-09-06 11:28:33 +00:00
|
|
|
void stop();
|
|
|
|
|
2020-04-02 06:22:48 +00:00
|
|
|
// Pass true to keep steppers from timing out
|
|
|
|
void idle(TERN_(ADVANCED_PAUSE_FEATURE, bool no_stepper_sleep=false));
|
|
|
|
inline void idle_no_sleep() { idle(TERN_(ADVANCED_PAUSE_FEATURE, true)); }
|
2020-02-27 12:34:48 +00:00
|
|
|
|
2016-09-29 20:06:01 +00:00
|
|
|
#if ENABLED(G38_PROBE_TARGET)
|
2019-03-10 22:22:09 +00:00
|
|
|
extern uint8_t G38_move; // Flag to tell the ISR that G38 is in progress, and the type
|
|
|
|
extern bool G38_did_trigger; // Flag from the ISR to indicate the endstop changed
|
2016-09-19 19:17:10 +00:00
|
|
|
#endif
|
|
|
|
|
2015-04-04 03:45:24 +00:00
|
|
|
/**
|
|
|
|
* The axis order in all axis related arrays is X, Y, Z, E
|
|
|
|
*/
|
2019-08-15 02:05:15 +00:00
|
|
|
void enable_e_steppers();
|
2015-04-04 02:25:22 +00:00
|
|
|
void enable_all_steppers();
|
2018-01-04 11:06:34 +00:00
|
|
|
void disable_e_stepper(const uint8_t e);
|
2017-03-18 02:12:19 +00:00
|
|
|
void disable_e_steppers();
|
2015-04-04 02:25:22 +00:00
|
|
|
void disable_all_steppers();
|
|
|
|
|
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);
|
2019-08-28 05:51:01 +00:00
|
|
|
void minkill(const bool steppers_off=false);
|
2012-03-25 12:36:51 +00:00
|
|
|
|
2020-03-14 23:47:44 +00:00
|
|
|
// Global State of the firmware
|
|
|
|
enum MarlinState : uint8_t {
|
|
|
|
MF_INITIALIZING = 0,
|
|
|
|
MF_RUNNING = _BV(0),
|
|
|
|
MF_PAUSED = _BV(1),
|
|
|
|
MF_WAITING = _BV(2),
|
|
|
|
MF_STOPPED = _BV(3),
|
2020-03-28 08:18:53 +00:00
|
|
|
MF_SD_COMPLETE = _BV(4),
|
2020-03-14 23:47:44 +00:00
|
|
|
MF_KILLED = _BV(7)
|
|
|
|
};
|
|
|
|
|
|
|
|
extern MarlinState marlin_state;
|
|
|
|
inline bool IsRunning() { return marlin_state == MF_RUNNING; }
|
|
|
|
inline bool IsStopped() { return marlin_state != MF_RUNNING; }
|
2011-08-12 20:28:35 +00:00
|
|
|
|
2019-10-02 23:54:20 +00:00
|
|
|
bool printingIsActive();
|
|
|
|
bool printingIsPaused();
|
2019-10-24 20:35:40 +00:00
|
|
|
void startOrResumeJob();
|
2019-10-02 23:54:20 +00:00
|
|
|
|
2019-03-10 14:13:54 +00:00
|
|
|
extern bool wait_for_heatup;
|
2015-04-04 03:45:24 +00:00
|
|
|
|
2017-04-09 16:12:08 +00:00
|
|
|
#if HAS_RESUME_CONTINUE
|
2019-03-09 20:13:50 +00:00
|
|
|
extern bool wait_for_user;
|
2020-03-28 08:18:53 +00:00
|
|
|
void wait_for_user_response(millis_t ms=0, const bool no_sleep=false);
|
2016-09-12 01:51:53 +00:00
|
|
|
#endif
|
|
|
|
|
2019-10-22 20:43:37 +00:00
|
|
|
#if ENABLED(PSU_CONTROL)
|
2018-03-09 00:56:47 +00:00
|
|
|
extern bool powersupply_on;
|
2020-08-22 04:13:43 +00:00
|
|
|
#define PSU_PIN_ON() do{ OUT_WRITE(PS_ON_PIN, PSU_ACTIVE_STATE); powersupply_on = true; }while(0)
|
|
|
|
#define PSU_PIN_OFF() do{ OUT_WRITE(PS_ON_PIN, !PSU_ACTIVE_STATE); powersupply_on = false; }while(0)
|
2018-03-09 00:56:47 +00:00
|
|
|
#if ENABLED(AUTO_POWER_CONTROL)
|
2020-11-09 00:37:41 +00:00
|
|
|
#define PSU_ON() powerManager.power_on()
|
|
|
|
#define PSU_OFF() powerManager.power_off()
|
|
|
|
#define PSU_OFF_SOON() powerManager.power_off_soon()
|
2018-03-09 00:56:47 +00:00
|
|
|
#else
|
2020-11-09 00:37:41 +00:00
|
|
|
#define PSU_ON() PSU_PIN_ON()
|
|
|
|
#define PSU_OFF() PSU_PIN_OFF()
|
|
|
|
#define PSU_OFF_SOON PSU_OFF
|
2018-03-09 00:56:47 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2017-10-26 18:37:26 +00:00
|
|
|
bool pin_is_protected(const pin_t pin);
|
2017-09-16 08:42:05 +00:00
|
|
|
|
2017-09-27 09:40:48 +00:00
|
|
|
#if HAS_SUICIDE
|
2019-10-24 19:07:28 +00:00
|
|
|
inline void suicide() { OUT_WRITE(SUICIDE_PIN, SUICIDE_PIN_INVERTING); }
|
2017-09-27 09:40:48 +00:00
|
|
|
#endif
|
2019-01-28 04:43:13 +00:00
|
|
|
|
2020-05-05 08:31:03 +00:00
|
|
|
#if HAS_KILL
|
|
|
|
#ifndef KILL_PIN_STATE
|
|
|
|
#define KILL_PIN_STATE LOW
|
|
|
|
#endif
|
|
|
|
inline bool kill_state() { return READ(KILL_PIN) == KILL_PIN_STATE; }
|
|
|
|
#endif
|
|
|
|
|
2021-01-22 21:01:19 +00:00
|
|
|
extern const char M112_KILL_STR[];
|