소스 검색

The plural of 'axis' is 'axes'

Scott Lahteine 7 년 전
부모
커밋
34be5d33c0
41개의 변경된 파일86개의 추가작업 그리고 86개의 파일을 삭제
  1. 2
    2
      Marlin/Configuration.h
  2. 2
    2
      Marlin/src/config/default/Configuration.h
  3. 2
    2
      Marlin/src/config/examples/AlephObjects/TAZ4/Configuration.h
  4. 2
    2
      Marlin/src/config/examples/AliExpress/CL-260/Configuration.h
  5. 6
    6
      Marlin/src/config/examples/Anet/A6/Configuration.h
  6. 2
    2
      Marlin/src/config/examples/Anet/A8/Configuration.h
  7. 2
    2
      Marlin/src/config/examples/BQ/Hephestos/Configuration.h
  8. 2
    2
      Marlin/src/config/examples/BQ/Hephestos_2/Configuration.h
  9. 2
    2
      Marlin/src/config/examples/BQ/WITBOX/Configuration.h
  10. 2
    2
      Marlin/src/config/examples/Cartesio/Configuration.h
  11. 2
    2
      Marlin/src/config/examples/Creality/CR-10/Configuration.h
  12. 2
    2
      Marlin/src/config/examples/Felix/Configuration.h
  13. 2
    2
      Marlin/src/config/examples/Felix/DUAL/Configuration.h
  14. 2
    2
      Marlin/src/config/examples/FolgerTech/i3-2020/Configuration.h
  15. 2
    2
      Marlin/src/config/examples/Geeetech/GT2560/Configuration.h
  16. 2
    2
      Marlin/src/config/examples/Geeetech/I3_Pro_X-GT2560/Configuration.h
  17. 2
    2
      Marlin/src/config/examples/Infitary/i3-M508/Configuration.h
  18. 2
    2
      Marlin/src/config/examples/Malyan/M150/Configuration.h
  19. 2
    2
      Marlin/src/config/examples/Micromake/C1/basic/Configuration.h
  20. 2
    2
      Marlin/src/config/examples/Micromake/C1/enhanced/Configuration.h
  21. 2
    2
      Marlin/src/config/examples/Mks/Sbase/Configuration.h
  22. 2
    2
      Marlin/src/config/examples/RepRapWorld/Megatronics/Configuration.h
  23. 2
    2
      Marlin/src/config/examples/RigidBot/Configuration.h
  24. 2
    2
      Marlin/src/config/examples/SCARA/Configuration.h
  25. 2
    2
      Marlin/src/config/examples/Sanguinololu/Configuration.h
  26. 2
    2
      Marlin/src/config/examples/TinyBoy2/Configuration.h
  27. 2
    2
      Marlin/src/config/examples/Velleman/K8200/Configuration.h
  28. 2
    2
      Marlin/src/config/examples/Velleman/K8400/Configuration.h
  29. 2
    2
      Marlin/src/config/examples/Velleman/K8400/Dual-head/Configuration.h
  30. 2
    2
      Marlin/src/config/examples/adafruit/ST7565/Configuration.h
  31. 2
    2
      Marlin/src/config/examples/delta/FLSUN/auto_calibrate/Configuration.h
  32. 2
    2
      Marlin/src/config/examples/delta/FLSUN/kossel_mini/Configuration.h
  33. 2
    2
      Marlin/src/config/examples/delta/generic/Configuration.h
  34. 2
    2
      Marlin/src/config/examples/delta/kossel_mini/Configuration.h
  35. 2
    2
      Marlin/src/config/examples/delta/kossel_pro/Configuration.h
  36. 2
    2
      Marlin/src/config/examples/delta/kossel_xl/Configuration.h
  37. 2
    2
      Marlin/src/config/examples/gCreate/gMax1.5+/Configuration.h
  38. 2
    2
      Marlin/src/config/examples/makibox/Configuration.h
  39. 2
    2
      Marlin/src/config/examples/stm32f103ret6/Configuration.h
  40. 2
    2
      Marlin/src/config/examples/tvrrug/Round2/Configuration.h
  41. 2
    2
      Marlin/src/config/examples/wt150/Configuration.h

+ 2
- 2
Marlin/Configuration.h 파일 보기

@@ -1010,8 +1010,8 @@
1010 1010
 //#define Z_SAFE_HOMING
1011 1011
 
1012 1012
 #if ENABLED(Z_SAFE_HOMING)
1013
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1014
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1013
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1014
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1015 1015
 #endif
1016 1016
 
1017 1017
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/default/Configuration.h 파일 보기

@@ -1010,8 +1010,8 @@
1010 1010
 //#define Z_SAFE_HOMING
1011 1011
 
1012 1012
 #if ENABLED(Z_SAFE_HOMING)
1013
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1014
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1013
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1014
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1015 1015
 #endif
1016 1016
 
1017 1017
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/AlephObjects/TAZ4/Configuration.h 파일 보기

@@ -1030,8 +1030,8 @@
1030 1030
 //#define Z_SAFE_HOMING
1031 1031
 
1032 1032
 #if ENABLED(Z_SAFE_HOMING)
1033
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1034
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1033
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1034
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1035 1035
 #endif
1036 1036
 
1037 1037
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/AliExpress/CL-260/Configuration.h 파일 보기

@@ -1010,8 +1010,8 @@
1010 1010
 //#define Z_SAFE_HOMING
1011 1011
 
1012 1012
 #if ENABLED(Z_SAFE_HOMING)
1013
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1014
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1013
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1014
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1015 1015
 #endif
1016 1016
 
1017 1017
 // Homing speeds (mm/m)

+ 6
- 6
Marlin/src/config/examples/Anet/A6/Configuration.h 파일 보기

@@ -1158,16 +1158,16 @@
1158 1158
 #define Z_SAFE_HOMING
1159 1159
 
1160 1160
 #if ENABLED(Z_SAFE_HOMING)
1161
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1162
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1161
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1162
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1163 1163
 
1164 1164
   //Anet A6 with new X-Axis
1165
-  //#define Z_SAFE_HOMING_X_POINT 113    // X point for Z homing when homing all axis (G28).
1166
-  //#define Z_SAFE_HOMING_Y_POINT 112    // Y point for Z homing when homing all axis (G28).
1165
+  //#define Z_SAFE_HOMING_X_POINT 113    // X point for Z homing when homing all axes (G28).
1166
+  //#define Z_SAFE_HOMING_Y_POINT 112    // Y point for Z homing when homing all axes (G28).
1167 1167
 
1168 1168
   //Anet A6 with new X-Axis and defined X_HOME_POS -7, Y_HOME_POS -6
1169
-  //#define Z_SAFE_HOMING_X_POINT 107    // X point for Z homing when homing all axis (G28).
1170
-  //#define Z_SAFE_HOMING_Y_POINT 107    // Y point for Z homing when homing all axis (G28).
1169
+  //#define Z_SAFE_HOMING_X_POINT 107    // X point for Z homing when homing all axes (G28).
1170
+  //#define Z_SAFE_HOMING_Y_POINT 107    // Y point for Z homing when homing all axes (G28).
1171 1171
 
1172 1172
 #endif
1173 1173
 

+ 2
- 2
Marlin/src/config/examples/Anet/A8/Configuration.h 파일 보기

@@ -1016,8 +1016,8 @@
1016 1016
 //#define Z_SAFE_HOMING
1017 1017
 
1018 1018
 #if ENABLED(Z_SAFE_HOMING)
1019
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1020
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1019
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1020
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1021 1021
 #endif
1022 1022
 
1023 1023
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/BQ/Hephestos/Configuration.h 파일 보기

@@ -1001,8 +1001,8 @@
1001 1001
 //#define Z_SAFE_HOMING
1002 1002
 
1003 1003
 #if ENABLED(Z_SAFE_HOMING)
1004
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1005
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1004
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1005
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1006 1006
 #endif
1007 1007
 
1008 1008
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/BQ/Hephestos_2/Configuration.h 파일 보기

@@ -1011,8 +1011,8 @@
1011 1011
 #define Z_SAFE_HOMING
1012 1012
 
1013 1013
 #if ENABLED(Z_SAFE_HOMING)
1014
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1015
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1014
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1015
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1016 1016
 #endif
1017 1017
 
1018 1018
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/BQ/WITBOX/Configuration.h 파일 보기

@@ -1001,8 +1001,8 @@
1001 1001
 //#define Z_SAFE_HOMING
1002 1002
 
1003 1003
 #if ENABLED(Z_SAFE_HOMING)
1004
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1005
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1004
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1005
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1006 1006
 #endif
1007 1007
 
1008 1008
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/Cartesio/Configuration.h 파일 보기

@@ -1009,8 +1009,8 @@
1009 1009
 //#define Z_SAFE_HOMING
1010 1010
 
1011 1011
 #if ENABLED(Z_SAFE_HOMING)
1012
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1013
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1012
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1013
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1014 1014
 #endif
1015 1015
 
1016 1016
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/Creality/CR-10/Configuration.h 파일 보기

@@ -1020,8 +1020,8 @@
1020 1020
 //#define Z_SAFE_HOMING
1021 1021
 
1022 1022
 #if ENABLED(Z_SAFE_HOMING)
1023
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1024
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1023
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1024
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1025 1025
 #endif
1026 1026
 
1027 1027
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/Felix/Configuration.h 파일 보기

@@ -992,8 +992,8 @@
992 992
 //#define Z_SAFE_HOMING
993 993
 
994 994
 #if ENABLED(Z_SAFE_HOMING)
995
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
996
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
995
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
996
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
997 997
 #endif
998 998
 
999 999
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/Felix/DUAL/Configuration.h 파일 보기

@@ -992,8 +992,8 @@
992 992
 //#define Z_SAFE_HOMING
993 993
 
994 994
 #if ENABLED(Z_SAFE_HOMING)
995
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
996
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
995
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
996
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
997 997
 #endif
998 998
 
999 999
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/FolgerTech/i3-2020/Configuration.h 파일 보기

@@ -1007,8 +1007,8 @@
1007 1007
 #define Z_SAFE_HOMING
1008 1008
 
1009 1009
 #if ENABLED(Z_SAFE_HOMING)
1010
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1011
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1010
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1011
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1012 1012
 #endif
1013 1013
 
1014 1014
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/Geeetech/GT2560/Configuration.h 파일 보기

@@ -1025,8 +1025,8 @@
1025 1025
 //#define Z_SAFE_HOMING
1026 1026
 
1027 1027
 #if ENABLED(Z_SAFE_HOMING)
1028
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1029
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1028
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1029
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1030 1030
 #endif
1031 1031
 
1032 1032
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/Geeetech/I3_Pro_X-GT2560/Configuration.h 파일 보기

@@ -1010,8 +1010,8 @@
1010 1010
 //#define Z_SAFE_HOMING
1011 1011
 
1012 1012
 #if ENABLED(Z_SAFE_HOMING)
1013
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1014
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1013
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1014
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1015 1015
 #endif
1016 1016
 
1017 1017
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/Infitary/i3-M508/Configuration.h 파일 보기

@@ -1014,8 +1014,8 @@
1014 1014
 //#define Z_SAFE_HOMING
1015 1015
 
1016 1016
 #if ENABLED(Z_SAFE_HOMING)
1017
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1018
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1017
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1018
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1019 1019
 #endif
1020 1020
 
1021 1021
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/Malyan/M150/Configuration.h 파일 보기

@@ -1038,8 +1038,8 @@
1038 1038
 //#define Z_SAFE_HOMING
1039 1039
 
1040 1040
 #if ENABLED(Z_SAFE_HOMING)
1041
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1042
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1041
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1042
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1043 1043
 #endif
1044 1044
 
1045 1045
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/Micromake/C1/basic/Configuration.h 파일 보기

@@ -1014,8 +1014,8 @@
1014 1014
 //#define Z_SAFE_HOMING
1015 1015
 
1016 1016
 #if ENABLED(Z_SAFE_HOMING)
1017
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1018
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1017
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1018
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1019 1019
 #endif
1020 1020
 
1021 1021
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/Micromake/C1/enhanced/Configuration.h 파일 보기

@@ -1014,8 +1014,8 @@
1014 1014
 //#define Z_SAFE_HOMING
1015 1015
 
1016 1016
 #if ENABLED(Z_SAFE_HOMING)
1017
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1018
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1017
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1018
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1019 1019
 #endif
1020 1020
 
1021 1021
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/Mks/Sbase/Configuration.h 파일 보기

@@ -1012,8 +1012,8 @@
1012 1012
 #define Z_SAFE_HOMING
1013 1013
 
1014 1014
 #if ENABLED(Z_SAFE_HOMING)
1015
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1016
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1015
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1016
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1017 1017
 #endif
1018 1018
 
1019 1019
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/RepRapWorld/Megatronics/Configuration.h 파일 보기

@@ -1010,8 +1010,8 @@
1010 1010
 //#define Z_SAFE_HOMING
1011 1011
 
1012 1012
 #if ENABLED(Z_SAFE_HOMING)
1013
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1014
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1013
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1014
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1015 1015
 #endif
1016 1016
 
1017 1017
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/RigidBot/Configuration.h 파일 보기

@@ -1008,8 +1008,8 @@
1008 1008
 //#define Z_SAFE_HOMING
1009 1009
 
1010 1010
 #if ENABLED(Z_SAFE_HOMING)
1011
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1012
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1011
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1012
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1013 1013
 #endif
1014 1014
 
1015 1015
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/SCARA/Configuration.h 파일 보기

@@ -1022,8 +1022,8 @@
1022 1022
 //#define Z_SAFE_HOMING
1023 1023
 
1024 1024
 #if ENABLED(Z_SAFE_HOMING)
1025
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1026
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1025
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1026
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1027 1027
 #endif
1028 1028
 
1029 1029
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/Sanguinololu/Configuration.h 파일 보기

@@ -1041,8 +1041,8 @@
1041 1041
 //#define Z_SAFE_HOMING
1042 1042
 
1043 1043
 #if ENABLED(Z_SAFE_HOMING)
1044
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1045
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1044
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1045
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1046 1046
 #endif
1047 1047
 
1048 1048
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/TinyBoy2/Configuration.h 파일 보기

@@ -1066,8 +1066,8 @@
1066 1066
 //#define Z_SAFE_HOMING
1067 1067
 
1068 1068
 #if ENABLED(Z_SAFE_HOMING)
1069
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1070
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1069
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1070
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1071 1071
 #endif
1072 1072
 
1073 1073
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/Velleman/K8200/Configuration.h 파일 보기

@@ -1040,8 +1040,8 @@
1040 1040
 //#define Z_SAFE_HOMING
1041 1041
 
1042 1042
 #if ENABLED(Z_SAFE_HOMING)
1043
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1044
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1043
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1044
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1045 1045
 #endif
1046 1046
 
1047 1047
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/Velleman/K8400/Configuration.h 파일 보기

@@ -1010,8 +1010,8 @@
1010 1010
 //#define Z_SAFE_HOMING
1011 1011
 
1012 1012
 #if ENABLED(Z_SAFE_HOMING)
1013
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1014
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1013
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1014
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1015 1015
 #endif
1016 1016
 
1017 1017
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/Velleman/K8400/Dual-head/Configuration.h 파일 보기

@@ -1010,8 +1010,8 @@
1010 1010
 //#define Z_SAFE_HOMING
1011 1011
 
1012 1012
 #if ENABLED(Z_SAFE_HOMING)
1013
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1014
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1013
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1014
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1015 1015
 #endif
1016 1016
 
1017 1017
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/adafruit/ST7565/Configuration.h 파일 보기

@@ -1010,8 +1010,8 @@
1010 1010
 //#define Z_SAFE_HOMING
1011 1011
 
1012 1012
 #if ENABLED(Z_SAFE_HOMING)
1013
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1014
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1013
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1014
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1015 1015
 #endif
1016 1016
 
1017 1017
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/delta/FLSUN/auto_calibrate/Configuration.h 파일 보기

@@ -1144,8 +1144,8 @@
1144 1144
 //#define Z_SAFE_HOMING
1145 1145
 
1146 1146
 #if ENABLED(Z_SAFE_HOMING)
1147
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1148
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1147
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1148
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1149 1149
 #endif
1150 1150
 
1151 1151
 // Delta only homes to Z

+ 2
- 2
Marlin/src/config/examples/delta/FLSUN/kossel_mini/Configuration.h 파일 보기

@@ -1138,8 +1138,8 @@
1138 1138
 //#define Z_SAFE_HOMING
1139 1139
 
1140 1140
 #if ENABLED(Z_SAFE_HOMING)
1141
-  #define Z_SAFE_HOMING_X_POINT ((X_MIN_POS + X_MAX_POS) / 2)    // X point for Z homing when homing all axis (G28).
1142
-  #define Z_SAFE_HOMING_Y_POINT ((Y_MIN_POS + Y_MAX_POS) / 2)    // Y point for Z homing when homing all axis (G28).
1141
+  #define Z_SAFE_HOMING_X_POINT ((X_MIN_POS + X_MAX_POS) / 2)    // X point for Z homing when homing all axes (G28).
1142
+  #define Z_SAFE_HOMING_Y_POINT ((Y_MIN_POS + Y_MAX_POS) / 2)    // Y point for Z homing when homing all axes (G28).
1143 1143
 #endif
1144 1144
 
1145 1145
 // Delta only homes to Z

+ 2
- 2
Marlin/src/config/examples/delta/generic/Configuration.h 파일 보기

@@ -1133,8 +1133,8 @@
1133 1133
 //#define Z_SAFE_HOMING
1134 1134
 
1135 1135
 #if ENABLED(Z_SAFE_HOMING)
1136
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1137
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1136
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1137
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1138 1138
 #endif
1139 1139
 
1140 1140
 // Delta only homes to Z

+ 2
- 2
Marlin/src/config/examples/delta/kossel_mini/Configuration.h 파일 보기

@@ -1136,8 +1136,8 @@
1136 1136
 //#define Z_SAFE_HOMING
1137 1137
 
1138 1138
 #if ENABLED(Z_SAFE_HOMING)
1139
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1140
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1139
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1140
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1141 1141
 #endif
1142 1142
 
1143 1143
 // Delta only homes to Z

+ 2
- 2
Marlin/src/config/examples/delta/kossel_pro/Configuration.h 파일 보기

@@ -1136,8 +1136,8 @@
1136 1136
 #define Z_SAFE_HOMING
1137 1137
 
1138 1138
 #if ENABLED(Z_SAFE_HOMING)
1139
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1140
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1139
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1140
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1141 1141
 #endif
1142 1142
 
1143 1143
 // Delta only homes to Z

+ 2
- 2
Marlin/src/config/examples/delta/kossel_xl/Configuration.h 파일 보기

@@ -1145,8 +1145,8 @@
1145 1145
 //#define Z_SAFE_HOMING
1146 1146
 
1147 1147
 #if ENABLED(Z_SAFE_HOMING)
1148
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1149
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1148
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1149
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1150 1150
 #endif
1151 1151
 
1152 1152
 // Delta only homes to Z

+ 2
- 2
Marlin/src/config/examples/gCreate/gMax1.5+/Configuration.h 파일 보기

@@ -1024,8 +1024,8 @@
1024 1024
 #define Z_SAFE_HOMING
1025 1025
 
1026 1026
 #if ENABLED(Z_SAFE_HOMING)
1027
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2 - 4) // X point for Z homing when homing all axis (G28).
1028
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2 + 4) // Y point for Z homing when homing all axis (G28).
1027
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2 - 4) // X point for Z homing when homing all axes (G28).
1028
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2 + 4) // Y point for Z homing when homing all axes (G28).
1029 1029
 #endif
1030 1030
 
1031 1031
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/makibox/Configuration.h 파일 보기

@@ -1013,8 +1013,8 @@
1013 1013
 //#define Z_SAFE_HOMING
1014 1014
 
1015 1015
 #if ENABLED(Z_SAFE_HOMING)
1016
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1017
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1016
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1017
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1018 1018
 #endif
1019 1019
 
1020 1020
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/stm32f103ret6/Configuration.h 파일 보기

@@ -1013,8 +1013,8 @@
1013 1013
 //#define Z_SAFE_HOMING
1014 1014
 
1015 1015
 #if ENABLED(Z_SAFE_HOMING)
1016
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1017
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1016
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1017
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1018 1018
 #endif
1019 1019
 
1020 1020
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/tvrrug/Round2/Configuration.h 파일 보기

@@ -1005,8 +1005,8 @@
1005 1005
 //#define Z_SAFE_HOMING
1006 1006
 
1007 1007
 #if ENABLED(Z_SAFE_HOMING)
1008
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1009
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1008
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1009
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1010 1010
 #endif
1011 1011
 
1012 1012
 // Homing speeds (mm/m)

+ 2
- 2
Marlin/src/config/examples/wt150/Configuration.h 파일 보기

@@ -1015,8 +1015,8 @@
1015 1015
 //#define Z_SAFE_HOMING
1016 1016
 
1017 1017
 #if ENABLED(Z_SAFE_HOMING)
1018
-  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axis (G28).
1019
-  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axis (G28).
1018
+  #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1019
+  #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2)    // Y point for Z homing when homing all axes (G28).
1020 1020
 #endif
1021 1021
 
1022 1022
 // Homing speeds (mm/m)

Loading…
취소
저장