Firmware2/Marlin/src/MarlinCore.h

87 lines
2.4 KiB
C
Raw Permalink Normal View History

/**
2016-03-24 19:01:20 +01:00
* Marlin 3D Printer Firmware
2020-02-03 15:00:57 +01:00
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
2016-03-24 19:01:20 +01:00
*
* Based on Sprinter and grbl.
2019-06-28 06:57:50 +02:00
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
2016-03-24 19:01:20 +01: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 05:20:14 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2016-03-24 19:01:20 +01:00
*
*/
#pragma once
2017-09-06 13:28:33 +02:00
#include "inc/MarlinConfig.h"
2017-11-19 20:59:40 +01:00
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
2017-09-06 13:28:33 +02:00
void stop();
2020-04-02 08:22:48 +02:00
// Pass true to keep steppers from timing out
void idle(bool no_stepper_sleep=false);
inline void idle_no_sleep() { idle(true); }
2020-02-27 13:34:48 +01:00
2016-09-29 22:06:01 +02:00
#if ENABLED(G38_PROBE_TARGET)
2019-03-10 23:22:09 +01: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
#endif
void kill(FSTR_P const lcd_error=nullptr, FSTR_P const lcd_component=nullptr, const bool steppers_off=false);
void minkill(const bool steppers_off=false);
2020-03-15 00:47:44 +01:00
// Global State of the firmware
enum MarlinState : uint8_t {
2021-05-08 05:54:06 +02:00
MF_INITIALIZING = 0,
MF_STOPPED,
MF_KILLED,
MF_RUNNING,
MF_SD_COMPLETE,
MF_PAUSED,
MF_WAITING,
2020-03-15 00:47:44 +01:00
};
extern MarlinState marlin_state;
2021-05-08 05:54:06 +02:00
inline bool IsRunning() { return marlin_state >= MF_RUNNING; }
inline bool IsStopped() { return marlin_state == MF_STOPPED; }
2011-08-12 22:28:35 +02:00
2019-10-03 01:54:20 +02:00
bool printingIsActive();
2021-05-08 11:35:35 +02:00
bool printJobOngoing();
2019-10-03 01:54:20 +02:00
bool printingIsPaused();
void startOrResumeJob();
2019-10-03 01:54:20 +02:00
2022-05-13 03:13:59 +02:00
bool printer_busy();
2019-03-10 15:13:54 +01:00
extern bool wait_for_heatup;
#if HAS_RESUME_CONTINUE
extern bool wait_for_user;
void wait_for_user_response(millis_t ms=0, const bool no_sleep=false);
2016-09-12 03:51:53 +02:00
#endif
bool pin_is_protected(const pin_t pin);
2017-09-16 10:42:05 +02:00
#if HAS_SUICIDE
inline void suicide() { OUT_WRITE(SUICIDE_PIN, SUICIDE_PIN_STATE); }
#endif
2019-01-28 05:43:13 +01: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 22:01:19 +01:00
extern const char M112_KILL_STR[];