Advertisement
Guest User

ss

a guest
Oct 23rd, 2017
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. // ################ Endstop configuration #####################
  2.  
  3. #define MULTI_ZENDSTOP_HOMING 0
  4. #define ENDSTOP_PULLUP_X_MIN true
  5. #define ENDSTOP_X_MIN_INVERTING false
  6. #define MIN_HARDWARE_ENDSTOP_X false
  7. #define ENDSTOP_PULLUP_Y_MIN true
  8. #define ENDSTOP_Y_MIN_INVERTING false
  9. #define MIN_HARDWARE_ENDSTOP_Y false
  10. #define ENDSTOP_PULLUP_Z_MIN true
  11. #define ENDSTOP_Z_MIN_INVERTING false
  12. #define MIN_HARDWARE_ENDSTOP_Z true
  13. #define ENDSTOP_PULLUP_Z2_MINMAX true
  14. #define ENDSTOP_Z2_MINMAX_INVERTING false
  15. #define MINMAX_HARDWARE_ENDSTOP_Z2 false
  16. #define ENDSTOP_PULLUP_X_MAX false
  17. #define ENDSTOP_X_MAX_INVERTING false
  18. #define MAX_HARDWARE_ENDSTOP_X true
  19. #define ENDSTOP_PULLUP_Y_MAX false
  20. #define ENDSTOP_Y_MAX_INVERTING true
  21. #define MAX_HARDWARE_ENDSTOP_Y true
  22. #define ENDSTOP_PULLUP_Z_MAX false
  23. #define ENDSTOP_Z_MAX_INVERTING false
  24. #define MAX_HARDWARE_ENDSTOP_Z true
  25. #define ENDSTOP_PULLUP_X2_MIN true
  26. #define ENDSTOP_PULLUP_Y2_MIN true
  27. #define ENDSTOP_PULLUP_Z2_MINMAX true
  28. #define ENDSTOP_PULLUP_X2_MAX true
  29. #define ENDSTOP_PULLUP_Y2_MAX true
  30. #define ENDSTOP_X2_MIN_INVERTING false
  31. #define ENDSTOP_Y2_MIN_INVERTING false
  32. #define ENDSTOP_X2_MAX_INVERTING false
  33. #define ENDSTOP_Y2_MAX_INVERTING false
  34. #define MIN_HARDWARE_ENDSTOP_X2 false
  35. #define MIN_HARDWARE_ENDSTOP_Y2 false
  36. #define MAX_HARDWARE_ENDSTOP_X2 false
  37. #define MAX_HARDWARE_ENDSTOP_Y2 false
  38. #define MINMAX_HARDWARE_ENDSTOP_Z2 false
  39. #define X2_MIN_PIN -1
  40. #define X2_MAX_PIN -1
  41. #define Y2_MIN_PIN -1
  42. #define Y2_MAX_PIN -1
  43. #define Z2_MINMAX_PIN -1
  44.  
  45.  
  46.  
  47. #define max_software_endstop_r true
  48.  
  49. #define min_software_endstop_x true
  50. #define min_software_endstop_y true
  51. #define min_software_endstop_z false
  52. #define max_software_endstop_x false
  53. #define max_software_endstop_y false
  54. #define max_software_endstop_z false
  55. #define DOOR_PIN -1
  56. #define DOOR_PULLUP 1
  57. #define DOOR_INVERTING 0
  58. #define ENDSTOP_X_BACK_MOVE 5
  59. #define ENDSTOP_Y_BACK_MOVE 5
  60. #define ENDSTOP_Z_BACK_MOVE 1
  61. #define ENDSTOP_X_RETEST_REDUCTION_FACTOR 3
  62. #define ENDSTOP_Y_RETEST_REDUCTION_FACTOR 3
  63. #define ENDSTOP_Z_RETEST_REDUCTION_FACTOR 3
  64. #define ENDSTOP_X_BACK_ON_HOME 0
  65. #define ENDSTOP_Y_BACK_ON_HOME 0
  66. #define ENDSTOP_Z_BACK_ON_HOME 0
  67. #define ALWAYS_CHECK_ENDSTOPS 1
  68. #define MOVE_X_WHEN_HOMED 0
  69. #define MOVE_Y_WHEN_HOMED 0
  70. #define MOVE_Z_WHEN_HOMED 0
  71.  
  72. // ################# XYZ movements ###################
  73.  
  74. #define X_ENABLE_ON 0
  75. #define Y_ENABLE_ON 0
  76. #define Z_ENABLE_ON 0
  77. #define DISABLE_X 0
  78. #define DISABLE_Y 0
  79. #define DISABLE_Z 0
  80. #define DISABLE_E 0
  81. #define INVERT_X_DIR 0
  82. #define INVERT_Y_DIR 0
  83. #define INVERT_Z_DIR 0
  84. #define X_HOME_DIR -1
  85. #define Y_HOME_DIR -1
  86. #define Z_HOME_DIR -1
  87. #define X_MAX_LENGTH 300
  88. #define Y_MAX_LENGTH 300
  89. #define Z_MAX_LENGTH 450
  90. #define X_MIN_POS 0
  91. #define Y_MIN_POS 0
  92. #define Z_MIN_POS 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement