Skip to content

Commit de58179

Browse files
committed
Minor Changes
1 parent 129217e commit de58179

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
@@ -937,7 +937,7 @@
937937
* Override with M201
938938
* X, Y, Z [, I [, J [, K]]], E0 [, E1[, E2...]]
939939
*/
940-
#define DEFAULT_MAX_ACCELERATION { 1500, 1500, 100, 10000 }
940+
#define DEFAULT_MAX_ACCELERATION { 2500, 2500, 100, 10000 }
941941

942942
//#define LIMITED_MAX_ACCEL_EDITING // Limit edit via M201 or LCD to DEFAULT_MAX_ACCELERATION * 2
943943
#if ENABLED(LIMITED_MAX_ACCEL_EDITING)
@@ -954,7 +954,7 @@
954954
*/
955955
#define DEFAULT_ACCELERATION 350 // X, Y, Z and E acceleration for printing moves
956956
#define DEFAULT_RETRACT_ACCELERATION 3000 // E acceleration for retracts
957-
#define DEFAULT_TRAVEL_ACCELERATION 750 // X, Y, Z acceleration for travel (non printing) moves
957+
#define DEFAULT_TRAVEL_ACCELERATION 1000 // X, Y, Z acceleration for travel (non printing) moves
958958

959959
/**
960960
* Default Jerk limits (mm/s)
@@ -1170,7 +1170,7 @@
11701170
* O-- FRONT --+
11711171
*/
11721172
#define ProbeOffset_X -55.0 //Being used for determining the MESH_MAX_XY values in Configuration_adv.h
1173-
#define ProbeOffset_Y -12.0
1173+
#define ProbeOffset_Y -12.7
11741174
#define NOZZLE_TO_PROBE_OFFSET { ProbeOffset_X, ProbeOffset_Y, -1.52 }
11751175

11761176
// 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
@@ -417,10 +417,10 @@
417417
#if ENABLED(AUTOTEMP)
418418
#define AUTOTEMP_OLDWEIGHT 0.98
419419
// Turn on AUTOTEMP on M104/M109 by default using proportions set here
420-
//#define AUTOTEMP_PROPORTIONAL
420+
#define AUTOTEMP_PROPORTIONAL
421421
#if ENABLED(AUTOTEMP_PROPORTIONAL)
422422
#define AUTOTEMP_MIN_P 0 // (°C) Added to the target temperature
423-
#define AUTOTEMP_MAX_P 5 // (°C) Added to the target temperature
423+
#define AUTOTEMP_MAX_P 10 // (°C) Added to the target temperature
424424
#define AUTOTEMP_FACTOR_P 1 // Apply this F parameter by default (overridden by M104/M109 F)
425425
#endif
426426
#endif
@@ -1358,7 +1358,7 @@
13581358
#define SD_PROCEDURE_DEPTH 1 // Increase if you need more nested M32 calls
13591359

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

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

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

0 commit comments

Comments
 (0)