Browse Source

Tweaked accel, bed size, etc.

Thomas Buck 7 years ago
parent
commit
298650ccb4
No account linked to committer's email address
1 changed files with 8 additions and 8 deletions
  1. 8
    8
      Marlin/Configuration.h

+ 8
- 8
Marlin/Configuration.h View File

@@ -545,7 +545,7 @@
545 545
  * Override with M201
546 546
  *                                      X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
547 547
  */
548
-#define DEFAULT_MAX_ACCELERATION      { 2000, 2000, 100, 10000 }
548
+#define DEFAULT_MAX_ACCELERATION      { 500, 500, 50, 1000 }
549 549
 
550 550
 /**
551 551
  * Default Acceleration (change/s) change = mm/s
@@ -557,7 +557,7 @@
557 557
  */
558 558
 #define DEFAULT_ACCELERATION          400    // X, Y, Z and E acceleration for printing moves
559 559
 #define DEFAULT_RETRACT_ACCELERATION  1000    // E acceleration for retracts
560
-#define DEFAULT_TRAVEL_ACCELERATION   1000    // X, Y, Z acceleration for travel (non printing) moves
560
+#define DEFAULT_TRAVEL_ACCELERATION   500    // X, Y, Z acceleration for travel (non printing) moves
561 561
 
562 562
 /**
563 563
  * Default Jerk (mm/s)
@@ -567,8 +567,8 @@
567 567
  * When changing speed and direction, if the difference is less than the
568 568
  * value set here, it may happen instantaneously.
569 569
  */
570
-#define DEFAULT_XJERK                 20.0
571
-#define DEFAULT_YJERK                 20.0
570
+#define DEFAULT_XJERK                 10.0
571
+#define DEFAULT_YJERK                 10.0
572 572
 #define DEFAULT_ZJERK                  0.3
573 573
 #define DEFAULT_EJERK                  5.0
574 574
 
@@ -779,16 +779,16 @@
779 779
 // @section machine
780 780
 
781 781
 // The size of the print bed
782
-#define X_BED_SIZE 215
783
-#define Y_BED_SIZE 215
782
+#define X_BED_SIZE 190
783
+#define Y_BED_SIZE 200
784 784
 
785 785
 // Travel limits (mm) after homing, corresponding to endstop positions.
786
-#define X_MIN_POS -33
786
+#define X_MIN_POS -5
787 787
 #define Y_MIN_POS -10
788 788
 #define Z_MIN_POS 0
789 789
 #define X_MAX_POS X_BED_SIZE
790 790
 #define Y_MAX_POS Y_BED_SIZE
791
-#define Z_MAX_POS 240
791
+#define Z_MAX_POS 200
792 792
 
793 793
 // If enabled, axes won't move below MIN_POS in response to movement commands.
794 794
 #define MIN_SOFTWARE_ENDSTOPS

Loading…
Cancel
Save