2018-04-22 02:41:26 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 15:00:57 +01:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2018-04-22 02:41:26 +02:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2018-04-22 02:41:26 +02: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/>.
|
2018-04-22 02:41:26 +02:00
|
|
|
*
|
|
|
|
*/
|
2018-10-28 04:48:28 +01:00
|
|
|
#pragma once
|
2018-04-22 02:41:26 +02:00
|
|
|
|
|
|
|
/**
|
2020-08-09 01:21:44 +02:00
|
|
|
* feature/powerloss.h - Resume an SD print after power-loss
|
2018-04-22 02:41:26 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../sd/cardreader.h"
|
2020-07-15 08:14:03 +02:00
|
|
|
#include "../gcode/gcode.h"
|
|
|
|
|
2019-08-20 09:40:44 +02:00
|
|
|
#include "../inc/MarlinConfig.h"
|
2018-04-22 02:41:26 +02:00
|
|
|
|
2020-11-27 04:18:40 +01:00
|
|
|
#if ENABLED(GCODE_REPEAT_MARKERS)
|
|
|
|
#include "../feature/repeat.h"
|
|
|
|
#endif
|
|
|
|
|
2019-02-10 11:54:23 +01:00
|
|
|
#if ENABLED(MIXING_EXTRUDER)
|
|
|
|
#include "../feature/mixing.h"
|
|
|
|
#endif
|
|
|
|
|
2019-08-20 09:40:44 +02:00
|
|
|
#if !defined(POWER_LOSS_STATE) && PIN_EXISTS(POWER_LOSS)
|
|
|
|
#define POWER_LOSS_STATE HIGH
|
|
|
|
#endif
|
|
|
|
|
2018-04-22 02:41:26 +02:00
|
|
|
//#define DEBUG_POWER_LOSS_RECOVERY
|
2019-05-08 03:38:40 +02:00
|
|
|
//#define SAVE_EACH_CMD_MODE
|
|
|
|
//#define SAVE_INFO_INTERVAL_MS 0
|
2018-04-22 02:41:26 +02:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint8_t valid_head;
|
|
|
|
|
|
|
|
// Machine state
|
2019-09-29 11:25:39 +02:00
|
|
|
xyze_pos_t current_position;
|
2020-11-21 04:25:51 +01:00
|
|
|
uint16_t feedrate;
|
2020-07-15 08:14:03 +02:00
|
|
|
float zraise;
|
2018-11-17 03:47:07 +01:00
|
|
|
|
2020-11-27 04:18:40 +01:00
|
|
|
// Repeat information
|
|
|
|
TERN_(GCODE_REPEAT_MARKERS, Repeat stored_repeat);
|
2019-04-16 01:53:39 +02:00
|
|
|
|
2020-11-21 04:25:51 +01:00
|
|
|
TERN_(HAS_HOME_OFFSET, xyz_pos_t home_offset);
|
|
|
|
TERN_(HAS_POSITION_SHIFT, xyz_pos_t position_shift);
|
|
|
|
TERN_(HAS_MULTI_EXTRUDER, uint8_t active_extruder);
|
2018-07-03 06:21:28 +02:00
|
|
|
|
2019-10-31 20:09:37 +01:00
|
|
|
#if DISABLED(NO_VOLUMETRICS)
|
|
|
|
bool volumetric_enabled;
|
2020-05-04 23:37:20 +02:00
|
|
|
float filament_size[EXTRUDERS];
|
2019-10-31 20:09:37 +01:00
|
|
|
#endif
|
|
|
|
|
2020-11-21 04:25:51 +01:00
|
|
|
TERN_(HAS_HOTEND, int16_t target_temperature[HOTENDS]);
|
|
|
|
TERN_(HAS_HEATED_BED, int16_t target_temperature_bed);
|
|
|
|
TERN_(HAS_FAN, uint8_t fan_speed[FAN_COUNT]);
|
2018-07-02 23:42:13 +02:00
|
|
|
|
2020-11-21 04:25:51 +01:00
|
|
|
TERN_(HAS_LEVELING, float fade);
|
2018-04-22 02:41:26 +02:00
|
|
|
|
2018-09-17 04:24:15 +02:00
|
|
|
#if ENABLED(FWRETRACT)
|
|
|
|
float retract[EXTRUDERS], retract_hop;
|
|
|
|
#endif
|
|
|
|
|
2019-02-10 11:54:23 +01:00
|
|
|
// Mixing extruder and gradient
|
|
|
|
#if ENABLED(MIXING_EXTRUDER)
|
|
|
|
//uint_fast8_t selected_vtool;
|
|
|
|
//mixer_comp_t color[NR_MIXING_VIRTUAL_TOOLS][MIXING_STEPPERS];
|
2020-11-21 04:25:51 +01:00
|
|
|
TERN_(GRADIENT_MIX, gradient_t gradient);
|
2019-02-10 11:54:23 +01:00
|
|
|
#endif
|
|
|
|
|
2018-06-30 05:41:02 +02:00
|
|
|
// SD Filename and position
|
2018-11-20 12:36:19 +01:00
|
|
|
char sd_filename[MAXPATHNAMELENGTH];
|
2019-09-11 01:52:41 +02:00
|
|
|
volatile uint32_t sdpos;
|
2018-04-22 02:41:26 +02:00
|
|
|
|
|
|
|
// Job elapsed time
|
|
|
|
millis_t print_job_elapsed;
|
|
|
|
|
2020-11-21 04:25:51 +01:00
|
|
|
// Relative axis modes
|
|
|
|
uint8_t axis_relative;
|
|
|
|
|
2020-09-28 22:52:21 +02:00
|
|
|
// Misc. Marlin flags
|
|
|
|
struct {
|
|
|
|
bool dryrun:1; // M111 S8
|
|
|
|
bool allow_cold_extrusion:1; // M302 P1
|
2020-11-21 04:25:51 +01:00
|
|
|
TERN_(HAS_LEVELING, bool leveling:1);
|
2020-09-28 22:52:21 +02:00
|
|
|
} flag;
|
|
|
|
|
2018-04-22 02:41:26 +02:00
|
|
|
uint8_t valid_foot;
|
2018-11-17 03:47:07 +01:00
|
|
|
|
2020-06-02 00:02:49 +02:00
|
|
|
bool valid() { return valid_head && valid_head == valid_foot; }
|
|
|
|
|
2018-04-22 02:41:26 +02:00
|
|
|
} job_recovery_info_t;
|
|
|
|
|
2018-11-17 03:47:07 +01:00
|
|
|
class PrintJobRecovery {
|
|
|
|
public:
|
2019-08-02 12:21:44 +02:00
|
|
|
static const char filename[5];
|
2019-08-02 09:22:09 +02:00
|
|
|
|
2018-11-17 03:47:07 +01:00
|
|
|
static SdFile file;
|
|
|
|
static job_recovery_info_t info;
|
2018-04-22 02:41:26 +02:00
|
|
|
|
2019-09-11 01:52:41 +02:00
|
|
|
static uint8_t queue_index_r; //!< Queue index of the active command
|
|
|
|
static uint32_t cmd_sdpos, //!< SD position of the next command
|
|
|
|
sdpos[BUFSIZE]; //!< SD positions of queued commands
|
|
|
|
|
2020-06-16 08:45:27 +02:00
|
|
|
#if ENABLED(DWIN_CREALITY_LCD)
|
|
|
|
static bool dwin_flag;
|
|
|
|
#endif
|
|
|
|
|
2018-11-17 03:47:07 +01:00
|
|
|
static void init();
|
2019-09-11 01:52:41 +02:00
|
|
|
static void prepare();
|
2018-11-17 03:47:07 +01:00
|
|
|
|
2019-08-20 09:40:44 +02:00
|
|
|
static inline void setup() {
|
|
|
|
#if PIN_EXISTS(POWER_LOSS)
|
2020-11-22 00:56:56 +01:00
|
|
|
#if ENABLED(POWER_LOSS_PULLUP)
|
|
|
|
SET_INPUT_PULLUP(POWER_LOSS_PIN);
|
|
|
|
#elif ENABLED(POWER_LOSS_PULLDOWN)
|
|
|
|
SET_INPUT_PULLDOWN(POWER_LOSS_PIN);
|
2019-08-20 09:40:44 +02:00
|
|
|
#else
|
|
|
|
SET_INPUT(POWER_LOSS_PIN);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-09-11 01:52:41 +02:00
|
|
|
// Track each command's file offsets
|
|
|
|
static inline uint32_t command_sdpos() { return sdpos[queue_index_r]; }
|
|
|
|
static inline void commit_sdpos(const uint8_t index_w) { sdpos[index_w] = cmd_sdpos; }
|
|
|
|
|
2018-11-17 03:47:07 +01:00
|
|
|
static bool enabled;
|
|
|
|
static void enable(const bool onoff);
|
|
|
|
static void changed();
|
|
|
|
|
|
|
|
static inline bool exists() { return card.jobRecoverFileExists(); }
|
|
|
|
static inline void open(const bool read) { card.openJobRecoveryFile(read); }
|
|
|
|
static inline void close() { file.close(); }
|
2018-04-22 02:41:26 +02:00
|
|
|
|
2020-01-14 03:52:24 +01:00
|
|
|
static void check();
|
|
|
|
static void resume();
|
2018-11-17 03:47:07 +01:00
|
|
|
static void purge();
|
2020-01-14 03:52:24 +01:00
|
|
|
|
2020-12-07 12:53:15 +01:00
|
|
|
static inline void cancel() { purge(); IF_DISABLED(NO_SD_AUTOSTART, card.autofile_begin()); }
|
2020-01-14 03:52:24 +01:00
|
|
|
|
2018-11-17 03:47:07 +01:00
|
|
|
static void load();
|
2020-07-15 08:14:03 +02:00
|
|
|
static void save(const bool force=ENABLED(SAVE_EACH_CMD_MODE), const float zraise=0);
|
2018-11-17 03:47:07 +01:00
|
|
|
|
2020-07-15 08:14:03 +02:00
|
|
|
#if PIN_EXISTS(POWER_LOSS)
|
|
|
|
static inline void outage() {
|
|
|
|
if (enabled && READ(POWER_LOSS_PIN) == POWER_LOSS_STATE)
|
|
|
|
_outage();
|
|
|
|
}
|
|
|
|
#endif
|
2019-09-11 01:52:41 +02:00
|
|
|
|
2020-09-28 22:52:21 +02:00
|
|
|
// The referenced file exists
|
|
|
|
static inline bool interrupted_file_exists() { return card.fileExists(info.sd_filename); }
|
|
|
|
|
|
|
|
static inline bool valid() { return info.valid() && interrupted_file_exists(); }
|
2018-11-17 03:47:07 +01:00
|
|
|
|
2020-07-15 08:14:03 +02:00
|
|
|
#if ENABLED(DEBUG_POWER_LOSS_RECOVERY)
|
|
|
|
static void debug(PGM_P const prefix);
|
|
|
|
#else
|
|
|
|
static inline void debug(PGM_P const) {}
|
|
|
|
#endif
|
2018-11-17 03:47:07 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
static void write();
|
2019-09-11 01:52:41 +02:00
|
|
|
|
2020-07-15 08:14:03 +02:00
|
|
|
#if ENABLED(BACKUP_POWER_SUPPLY)
|
|
|
|
static void retract_and_lift(const float &zraise);
|
|
|
|
#endif
|
2019-11-21 00:40:21 +01:00
|
|
|
|
2020-07-15 08:14:03 +02:00
|
|
|
#if PIN_EXISTS(POWER_LOSS)
|
|
|
|
friend class GcodeSuite;
|
|
|
|
static void _outage();
|
|
|
|
#endif
|
2018-11-17 03:47:07 +01:00
|
|
|
};
|
2018-04-22 02:41:26 +02:00
|
|
|
|
2018-11-17 03:47:07 +01:00
|
|
|
extern PrintJobRecovery recovery;
|