Skip to content

Commit

Permalink
cleanup moved endstop drive over to top of config
Browse files Browse the repository at this point in the history
  • Loading branch information
Nibbels committed May 26, 2019
1 parent e66259e commit bfb68e2
Show file tree
Hide file tree
Showing 8 changed files with 371 additions and 343 deletions.
Binary file modified .vs/Repetier/v14/.suo
Binary file not shown.
21 changes: 11 additions & 10 deletions Repetier/RF1000.h
Expand Up @@ -26,6 +26,17 @@
/** \brief Number of extruders */
#define NUM_EXTRUDER 1 // 1 = Single, 2 = Dual

/** \brief Specifies the maximal drive over millimeters which the z-endstop can bear without getting damaged or degraded */
/*
Known Limits for Z_ENDSTOP_DRIVE_OVER to avoid when extending value:
Z-EndStop button crash RF1000: ~ >0.8f
Z-EndStop optical button crash RF2000: ~ >1.3f
Crash with Einhausung/Plexiglas backside RFx000: ~ >5.0 .. 6.0f
Crash with backside metal RFx000: ~ >10.0..12.0f
Overflow in Z-Matrix: >12.7f
*/
#define Z_ENDSTOP_DRIVE_OVER 0.8f //mm

// ##########################################################################################
// ## main hardware configuration
// ##########################################################################################
Expand Down Expand Up @@ -549,16 +560,6 @@ A good start is 30 lower then the optimal value. You need to leave room for cool
// ## Configuration of the endstops
// ##########################################################################################

/** \brief Specifies the maximal drive over millimeters which the z-endstop can bear without getting damaged or degraded */
/*
Known Limits for Z_ENDSTOP_DRIVE_OVER to avoid when extending value:
Z-EndStop button crash RF1000: ~ >0.8f
Z-EndStop optical button crash RF2000: ~ >1.3f
Crash with Einhausung/Plexiglas backside RFx000: ~ >5.0 .. 6.0f
Crash with backside metal RFx000: ~ >10.0..12.0f
Overflow in Z-Matrix: >12.7f
*/
#define Z_ENDSTOP_DRIVE_OVER 0.8f //mm
#define Z_ENDSTOP_MAX_HYSTERESIS 0.5f //mm

/** \brief By default all endstops are pulled up to HIGH. You need a pullup if you
Expand Down
21 changes: 11 additions & 10 deletions Repetier/RF2000.h
Expand Up @@ -26,6 +26,17 @@
/** \brief Number of extruders */
#define NUM_EXTRUDER 2 // 1 = Single, 2 = Dual

/** \brief Specifies the maximal drive over millimeters which the z-endstop can bear without getting damaged or degraded */
/*
Known Limits for Z_ENDSTOP_DRIVE_OVER to avoid when extending value:
Z-EndStop button crash RF1000: ~ >0.8f
Z-EndStop optical button crash RF2000: ~ >1.3f
Crash with Einhausung/Plexiglas backside RFx000: ~ >5.0 .. 6.0f
Crash with backside metal RFx000: ~ >10.0..12.0f
Overflow in Z-Matrix: >12.7f
*/
#define Z_ENDSTOP_DRIVE_OVER 1.3f //mm

// ##########################################################################################
// ## main hardware configuration
// ##########################################################################################
Expand Down Expand Up @@ -564,16 +575,6 @@ A good start is 30 lower then the optimal value. You need to leave room for cool
// ## Configuration of the endstops
// ##########################################################################################

/** \brief Specifies the maximal drive over millimeters which the z-endstop can bear without getting damaged or degraded */
/*
Known Limits for Z_ENDSTOP_DRIVE_OVER to avoid when extending value:
Z-EndStop button crash RF1000: ~ >0.8f
Z-EndStop optical button crash RF2000: ~ >1.3f
Crash with Einhausung/Plexiglas backside RFx000: ~ >5.0 .. 6.0f
Crash with backside metal RFx000: ~ >10.0..12.0f
Overflow in Z-Matrix: >12.7f
*/
#define Z_ENDSTOP_DRIVE_OVER 1.3f //mm
#define Z_ENDSTOP_MAX_HYSTERESIS 0.1f //mm

/** \brief By default all endstops are pulled up to HIGH. You need a pullup if you
Expand Down
21 changes: 11 additions & 10 deletions Repetier/RF2000v2.h
Expand Up @@ -26,6 +26,17 @@
/** \brief Number of extruders */
#define NUM_EXTRUDER 2 // 1 = Single, 2 = Dual

/** \brief Specifies the maximal drive over millimeters which the z-endstop can bear without getting damaged or degraded */
/*
Known Limits for Z_ENDSTOP_DRIVE_OVER to avoid when extending value:
Z-EndStop button crash RF1000: ~ >0.8f
Z-EndStop optical button crash RF2000: ~ >1.3f
Crash with Einhausung/Plexiglas backside RFx000: ~ >5.0 .. 6.0f
Crash with backside metal RFx000: ~ >10.0..12.0f
Overflow in Z-Matrix: >12.7f
*/
#define Z_ENDSTOP_DRIVE_OVER 3.0f //mm

// ##########################################################################################
// ## main hardware configuration
// ##########################################################################################
Expand Down Expand Up @@ -564,16 +575,6 @@ A good start is 30 lower then the optimal value. You need to leave room for cool
// ## Configuration of the endstops
// ##########################################################################################

/** \brief Specifies the maximal drive over millimeters which the z-endstop can bear without getting damaged or degraded */
/*
Known Limits for Z_ENDSTOP_DRIVE_OVER to avoid when extending value:
Z-EndStop button crash RF1000: ~ >0.8f
Z-EndStop optical button crash RF2000: ~ >1.3f
Crash with Einhausung/Plexiglas backside RFx000: ~ >5.0 .. 6.0f
Crash with backside metal RFx000: ~ >10.0..12.0f
Overflow in Z-Matrix: >12.7f
*/
#define Z_ENDSTOP_DRIVE_OVER 3.0f //mm
#define Z_ENDSTOP_MAX_HYSTERESIS 0.2f //mm

/** \brief By default all endstops are pulled up to HIGH. You need a pullup if you
Expand Down

0 comments on commit bfb68e2

Please sign in to comment.