Skip to content

Commit efc0304

Browse files
committed
Minor Changes
1 parent 63f3fc2 commit efc0304

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Marlin/Configuration.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@
952952
* Override with M201
953953
* X, Y, Z [, I [, J [, K]]], E0 [, E1[, E2...]]
954954
*/
955-
#define DEFAULT_MAX_ACCELERATION { 1500, 1500, 100, 10000 }
955+
#define DEFAULT_MAX_ACCELERATION { 2500, 2500, 100, 10000 }
956956

957957
//#define LIMITED_MAX_ACCEL_EDITING // Limit edit via M201 or LCD to DEFAULT_MAX_ACCELERATION * 2
958958
#if ENABLED(LIMITED_MAX_ACCEL_EDITING)
@@ -969,7 +969,7 @@
969969
*/
970970
#define DEFAULT_ACCELERATION 350 // X, Y, Z and E acceleration for printing moves
971971
#define DEFAULT_RETRACT_ACCELERATION 3000 // E acceleration for retracts
972-
#define DEFAULT_TRAVEL_ACCELERATION 750 // X, Y, Z acceleration for travel (non printing) moves
972+
#define DEFAULT_TRAVEL_ACCELERATION 1000 // X, Y, Z acceleration for travel (non printing) moves
973973

974974
/**
975975
* Default Jerk limits (mm/s)
@@ -1185,7 +1185,7 @@
11851185
* O-- FRONT --+
11861186
*/
11871187
#define ProbeOffset_X -55.0 //Being used for determining the MESH_MAX_XY values in Configuration_adv.h
1188-
#define ProbeOffset_Y -12.0
1188+
#define ProbeOffset_Y -12.7
11891189
#define NOZZLE_TO_PROBE_OFFSET { ProbeOffset_X, ProbeOffset_Y, -1.52 }
11901190

11911191
// Most probes should stay away from the edges of the bed, but

Marlin/Configuration_adv.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -426,10 +426,10 @@
426426
#if ENABLED(AUTOTEMP)
427427
#define AUTOTEMP_OLDWEIGHT 0.98 // Factor used to weight previous readings (0.0 < value < 1.0)
428428
// Turn on AUTOTEMP on M104/M109 by default using proportions set here
429-
//#define AUTOTEMP_PROPORTIONAL
429+
#define AUTOTEMP_PROPORTIONAL
430430
#if ENABLED(AUTOTEMP_PROPORTIONAL)
431431
#define AUTOTEMP_MIN_P 0 // (°C) Added to the target temperature
432-
#define AUTOTEMP_MAX_P 5 // (°C) Added to the target temperature
432+
#define AUTOTEMP_MAX_P 10 // (°C) Added to the target temperature
433433
#define AUTOTEMP_FACTOR_P 1 // Apply this F parameter by default (overridden by M104/M109 F)
434434
#endif
435435
#endif
@@ -1417,7 +1417,7 @@
14171417
#define SD_PROCEDURE_DEPTH 1 // Increase if you need more nested M32 calls
14181418

14191419
#define SD_FINISHED_STEPPERRELEASE true // Disable steppers when SD Print is finished
1420-
#define SD_FINISHED_RELEASECOMMAND "M84" // Use "M84XYE" to keep Z enabled so your bed stays in place
1420+
#define SD_FINISHED_RELEASECOMMAND "M84XYE" // Use "M84XYE" to keep Z enabled so your bed stays in place
14211421

14221422
// Reverse SD sort to show "more recent" files first, according to the card's FAT.
14231423
// Since the FAT gets out of order with usage, SDCARD_SORT_ALPHA is recommended.
@@ -2415,7 +2415,7 @@
24152415
// Longer prime to clean out a SINGLENOZZLE
24162416
#define TOOLCHANGE_FS_EXTRA_PRIME 0 // (mm) Extra priming length
24172417
#define TOOLCHANGE_FS_PRIME_SPEED (4.6*60) // (mm/min) Extra priming feedrate
2418-
#define TOOLCHANGE_FS_WIPE_RETRACT 0 // (mm/min) Retract before cooling for less stringing, better wipe, etc.
2418+
#define TOOLCHANGE_FS_WIPE_RETRACT (3*60) // (mm/min) Retract before cooling for less stringing, better wipe, etc.
24192419

24202420
// Cool after prime to reduce stringing
24212421
#define TOOLCHANGE_FS_FAN -1 // Fan index or -1 to skip

0 commit comments

Comments
 (0)