Skip to content

Commit

Permalink
V1.6.0
Browse files Browse the repository at this point in the history
* Turned on LIMITED_MAX_ACCEL_EDITING
* Turned on ADVANCED_PAUSE_FEATURE
  - PAUSE_PARK_RETRACT_LENGTH set to 3mm instead of default 2mm
  - FILAMENT_CHANGE_UNLOAD_LENGTH set to 150mm instead of 100mm
* Turned on NOZZLE_PARK_FEATURE
* Turned on PARK_HEAD_ON_PAUSE
* Turned on FILAMENT_LOAD_UNLOAD_GCODES
  • Loading branch information
ADeliciousMan committed Sep 3, 2023
1 parent d494764 commit 69a1040
Show file tree
Hide file tree
Showing 11 changed files with 7,099 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@
// Could potentially go higher to { 3000, 3000, 100, 10000 } - DELICIOUS
#define DEFAULT_MAX_ACCELERATION { 2000, 2000, 100, 10000 }

//#define LIMITED_MAX_ACCEL_EDITING // Limit edit via M201 or LCD to DEFAULT_MAX_ACCELERATION * 2
#define LIMITED_MAX_ACCEL_EDITING // Limit edit via M201 or LCD to DEFAULT_MAX_ACCELERATION * 2
#if ENABLED(LIMITED_MAX_ACCEL_EDITING)
#define MAX_ACCEL_EDIT_VALUES { 6000, 6000, 200, 20000 } // ...or, set your own edit limits
#endif
Expand Down Expand Up @@ -1801,7 +1801,7 @@
* P1 Raise the nozzle always to Z-park height.
* P2 Raise the nozzle by Z-park amount, limited to Z_MAX_POS.
*/
//#define NOZZLE_PARK_FEATURE
#define NOZZLE_PARK_FEATURE

#if ENABLED(NOZZLE_PARK_FEATURE)
// Specify a park position as { X, Y, Z_raise }
Expand Down
14 changes: 9 additions & 5 deletions Configuration_adv.h
Original file line number Diff line number Diff line change
Expand Up @@ -2441,14 +2441,18 @@
*
* Enable PARK_HEAD_ON_PAUSE to add the G-code M125 Pause and Park.
*/
//#define ADVANCED_PAUSE_FEATURE
#define ADVANCED_PAUSE_FEATURE
#if ENABLED(ADVANCED_PAUSE_FEATURE)
#define PAUSE_PARK_RETRACT_FEEDRATE 60 // (mm/s) Initial retract feedrate.
#define PAUSE_PARK_RETRACT_LENGTH 2 // (mm) Initial retract.

// Default is 2mm - DELICIOUS
#define PAUSE_PARK_RETRACT_LENGTH 3 // (mm) Initial retract.
// This short retract is done immediately, before parking the nozzle.
#define FILAMENT_CHANGE_UNLOAD_FEEDRATE 10 // (mm/s) Unload filament feedrate. This can be pretty fast.
#define FILAMENT_CHANGE_UNLOAD_ACCEL 25 // (mm/s^2) Lower acceleration may allow a faster feedrate.
#define FILAMENT_CHANGE_UNLOAD_LENGTH 100 // (mm) The length of filament for a complete unload.

// Default is 100mm - DELICIOUS
#define FILAMENT_CHANGE_UNLOAD_LENGTH 150 // (mm) The length of filament for a complete unload.
// For Bowden, the full length of the tube and nozzle.
// For direct drive, the full length of the nozzle.
// Set to 0 for manual unloading.
Expand Down Expand Up @@ -2481,10 +2485,10 @@
//#define FILAMENT_CHANGE_RESUME_ON_INSERT // Automatically continue / load filament when runout sensor is triggered again.
//#define PAUSE_REHEAT_FAST_RESUME // Reduce number of waits by not prompting again post-timeout before continuing.

//#define PARK_HEAD_ON_PAUSE // Park the nozzle during pause and filament change.
#define PARK_HEAD_ON_PAUSE // Park the nozzle during pause and filament change.
//#define HOME_BEFORE_FILAMENT_CHANGE // If needed, home before parking for filament change

//#define FILAMENT_LOAD_UNLOAD_GCODES // Add M701/M702 Load/Unload G-codes, plus Load/Unload in the LCD Prepare menu.
#define FILAMENT_LOAD_UNLOAD_GCODES // Add M701/M702 Load/Unload G-codes, plus Load/Unload in the LCD Prepare menu.
//#define FILAMENT_UNLOAD_ALL_EXTRUDERS // Allow M702 to unload all extruders above a minimum target temp (as set by M302)
#endif

Expand Down
Binary file not shown.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# A Delicious Marlin Ender 3/Pro Firmware

#### Date of Latest Build: 2023-08-23 - V1.5.0
#### Date of Latest Build: 2023-09-03 - V1.6.0
#### Latest Marlin Version: 2.1.2.1

## ABOUT
Expand Down Expand Up @@ -66,6 +66,15 @@ I **ONLY** own a Ender 3 Pro with a 4.2.7 512k board (though should function on

## CHANGELOG:

#### 2023-09-03 - V1.6.0
* Turned on LIMITED_MAX_ACCEL_EDITING
* Turned on ADVANCED_PAUSE_FEATURE
- PAUSE_PARK_RETRACT_LENGTH set to 3mm instead of default 2mm
- FILAMENT_CHANGE_UNLOAD_LENGTH set to 150mm instead of 100mm
* Turned on NOZZLE_PARK_FEATURE
* Turned on PARK_HEAD_ON_PAUSE
* Turned on FILAMENT_LOAD_UNLOAD_GCODES

#### 2023-08-23 - V1.5.0

* Turned off LIN_ADVANCE (Not supported on the 4.2.7 board, I did a dumb)
Expand Down
Loading

0 comments on commit 69a1040

Please sign in to comment.