瀏覽代碼

Tweaks to CR-10S configuration

Scott Lahteine 6 年之前
父節點
當前提交
1d366db764
共有 1 個檔案被更改,包括 14 行新增14 行删除
  1. 14
    14
      Marlin/src/config/examples/Creality/CR-10S/Configuration.h

+ 14
- 14
Marlin/src/config/examples/Creality/CR-10S/Configuration.h 查看文件

@@ -90,7 +90,7 @@
90 90
  */
91 91
 
92 92
 // Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
93
-//#define SHOW_CUSTOM_BOOTSCREEN
93
+#define SHOW_CUSTOM_BOOTSCREEN
94 94
 
95 95
 // Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
96 96
 #define CUSTOM_STATUS_SCREEN_IMAGE
@@ -675,9 +675,9 @@
675 675
  *   M204 R    Retract Acceleration
676 676
  *   M204 T    Travel Acceleration
677 677
  */
678
-#define DEFAULT_ACCELERATION          575    // X, Y, Z and E acceleration for printing moves
678
+#define DEFAULT_ACCELERATION           600    // X, Y, Z and E acceleration for printing moves
679 679
 #define DEFAULT_RETRACT_ACCELERATION  1000    // E acceleration for retracts
680
-#define DEFAULT_TRAVEL_ACCELERATION   1000    // X, Y, Z acceleration for travel (non printing) moves
680
+#define DEFAULT_TRAVEL_ACCELERATION    800    // X, Y, Z acceleration for travel (non printing) moves
681 681
 
682 682
 /**
683 683
  * Default Jerk (mm/s)
@@ -687,8 +687,8 @@
687 687
  * When changing speed and direction, if the difference is less than the
688 688
  * value set here, it may happen instantaneously.
689 689
  */
690
-#define DEFAULT_XJERK                 20.0
691
-#define DEFAULT_YJERK                 20.0
690
+#define DEFAULT_XJERK                 10.0
691
+#define DEFAULT_YJERK                 10.0
692 692
 #define DEFAULT_ZJERK                  0.4
693 693
 #define DEFAULT_EJERK                  5.0
694 694
 
@@ -934,15 +934,15 @@
934 934
 // @section machine
935 935
 
936 936
 // The size of the print bed
937
-#define X_BED_SIZE 300
938
-#define Y_BED_SIZE 300
937
+#define X_BED_SIZE 296 // Nozzle is at X4 when homed
938
+#define Y_BED_SIZE 298 // Nozzle is at Y2 when homed
939 939
 
940 940
 // Travel limits (mm) after homing, corresponding to endstop positions.
941 941
 #define X_MIN_POS 0
942 942
 #define Y_MIN_POS 0
943 943
 #define Z_MIN_POS 0
944
-#define X_MAX_POS X_BED_SIZE
945
-#define Y_MAX_POS Y_BED_SIZE
944
+#define X_MAX_POS 319 // 15mm Extra space on the right end
945
+#define Y_MAX_POS 306 // 4mm Extra space behind the bed
946 946
 #define Z_MAX_POS 400
947 947
 
948 948
 // Z raise distance for tool-change, as needed for some extruders
@@ -1200,8 +1200,8 @@
1200 1200
 
1201 1201
 // Manually set the home position. Leave these undefined for automatic settings.
1202 1202
 // For DELTA this is the top-center of the Cartesian print volume.
1203
-//#define MANUAL_X_HOME_POS 0
1204
-//#define MANUAL_Y_HOME_POS 0
1203
+#define MANUAL_X_HOME_POS 4
1204
+#define MANUAL_Y_HOME_POS 2
1205 1205
 //#define MANUAL_Z_HOME_POS 0
1206 1206
 
1207 1207
 // Use "Z Safe Homing" to avoid homing with a Z probe outside the bed area.
@@ -1216,13 +1216,13 @@
1216 1216
 //#define Z_SAFE_HOMING
1217 1217
 
1218 1218
 #if ENABLED(Z_SAFE_HOMING)
1219
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1220
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1219
+  #define Z_SAFE_HOMING_X_POINT 150 // X point for Z homing when homing all axes (G28).
1220
+  #define Z_SAFE_HOMING_Y_POINT 150 // Y point for Z homing when homing all axes (G28).
1221 1221
 #endif
1222 1222
 
1223 1223
 // Homing speeds (mm/m)
1224 1224
 #define HOMING_FEEDRATE_XY (50*60)
1225
-#define HOMING_FEEDRATE_Z  (4*60)
1225
+#define HOMING_FEEDRATE_Z  (8*60)
1226 1226
 
1227 1227
 // Validate that endstops are triggered on homing moves
1228 1228
 #define VALIDATE_HOMING_ENDSTOPS

Loading…
取消
儲存