Skip to content

Commit

Permalink
Allow minimum backlash rate of 2x
Browse files Browse the repository at this point in the history
  • Loading branch information
hjd1964 committed Jan 24, 2022
1 parent 5a1e7ed commit 4e5e27b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Validate.h
Original file line number Diff line number Diff line change
Expand Up @@ -878,8 +878,8 @@

#ifndef TRACK_BACKLASH_RATE
#error "Configuration (Config.h): Setting TRACK_BACKLASH_RATE must be present!"
#elif TRACK_BACKLASH_RATE < 5 || TRACK_BACKLASH_RATE > 50
#error "Configuration (Config.h): Setting TRACK_BACKLASH_RATE invalid, use a number between 5 and 50 (x sidereal rate.)"
#elif TRACK_BACKLASH_RATE < 2 || TRACK_BACKLASH_RATE > 50
#error "Configuration (Config.h): Setting TRACK_BACKLASH_RATE invalid, use a number between 2 and 50 (x sidereal rate.)"
#elif TRACK_BACKLASH_RATE > 25 && (AXIS1_DRIVER_MICROSTEPS_GOTO != OFF || AXIS2_DRIVER_MICROSTEPS_GOTO != OFF)
#warning "Configuration (Config.h): Setting TRACK_BACKLASH_RATE, above 25x can cause problems if AXISn_STEPS_PER_DEGREE > 30600 *and* on-the-fly micro-step mode switching is used"
#endif
Expand Down

0 comments on commit 4e5e27b

Please sign in to comment.