Skip to content

Commit

Permalink
Merge branch 'MK3' into version-shave
Browse files Browse the repository at this point in the history
  • Loading branch information
DRracer authored Jun 21, 2021
2 parents 9be60d0 + 30d9fae commit 5ca62d2
Show file tree
Hide file tree
Showing 66 changed files with 13,204 additions and 16,621 deletions.
9 changes: 5 additions & 4 deletions Firmware/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ extern PGM_P sPrinterName;
#define FW_REVISION 0
#define FW_VERSION STR(FW_MAJOR) "." STR(FW_MINOR) "." STR(FW_REVISION)

#define FW_COMMIT_NR 3556
#define FW_COMMIT_NR 4481
// FW_VERSION_UNKNOWN means this is an unofficial build.
// The firmware should only be checked into github with this symbol.
#define FW_DEV_VERSION FW_VERSION_UNKNOWN
Expand Down Expand Up @@ -555,9 +555,10 @@ enum CalibrationStatus

// Try to maintain a minimum distance from the bed even when Z is
// unknown when doing the following operations
#define MIN_Z_FOR_LOAD 50
#define MIN_Z_FOR_UNLOAD 50
#define MIN_Z_FOR_PREHEAT 10
#define MIN_Z_FOR_LOAD 50 // lcd filament loading or autoload
#define MIN_Z_FOR_UNLOAD 50 // lcd filament unloading
#define MIN_Z_FOR_SWAP 27 // filament change (including M600)
#define MIN_Z_FOR_PREHEAT 10 // lcd preheat

#include "Configuration_adv.h"
#include "thermistortables.h"
Expand Down
6 changes: 6 additions & 0 deletions Firmware/Configuration_adv.h
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,12 @@ const unsigned int dropsegments=5; //everything with less than this number of st
*/
#define EXTENDED_CAPABILITIES_REPORT

/**
* Enable M120/M121 G-code commands
*
*/
//#define M120_M121_ENABLED //Be careful enabling and using these G-code commands.

//===========================================================================
//============================= Define Defines ============================
//===========================================================================
Expand Down
4 changes: 2 additions & 2 deletions Firmware/Marlin.h
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,8 @@ extern bool mmu_print_saved;

//estimated time to end of the print
extern uint8_t print_percent_done_normal;
extern uint16_t print_time_remaining_normal;
extern uint8_t print_percent_done_silent;
extern uint16_t print_time_remaining_normal;
extern uint16_t print_time_remaining_silent;
extern uint16_t print_time_to_change_normal;
extern uint16_t print_time_to_change_silent;
Expand All @@ -376,7 +376,7 @@ extern uint16_t gcode_in_progress;

extern LongTimer safetyTimer;

#define PRINT_PERCENT_DONE_INIT 0xff
#define PRINT_PERCENT_DONE_INIT 0xff
#define PRINTER_ACTIVE (IS_SD_PRINTING || is_usb_printing || isPrintPaused || (custom_message_type == CustomMsg::TempCal) || saved_printing || (lcd_commands_type == LcdCommands::Layer1Cal) || mmu_print_saved || homing_flag || mesh_bed_leveling_flag)

//! Beware - mcode_in_progress is set as soon as the command gets really processed,
Expand Down
Loading

0 comments on commit 5ca62d2

Please sign in to comment.