Browse Source

Assisted Tramming requires a probe (#18912)

vanilla_fb_2.0.x
Keith Bennett 4 years ago
committed by GitHub
parent
commit
5823ebb446
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Marlin/Configuration_adv.h
  2. 7
      Marlin/src/inc/SanityCheck.h

2
Marlin/Configuration_adv.h

@ -769,7 +769,7 @@
#endif
//
// Add the G35 command to read bed corners to help adjust screws.
// Add the G35 command to read bed corners to help adjust screws. Requires a bed probe.
//
//#define ASSISTED_TRAMMING
#if ENABLED(ASSISTED_TRAMMING)

7
Marlin/src/inc/SanityCheck.h

@ -2072,6 +2072,13 @@ static_assert(hbm[Z_AXIS] >= 0, "HOMING_BUMP_MM.Z must be greater than or equal
#endif
#endif
/**
* G35 Assisted Tramming
*/
#if ENABLED(ASSISTED_TRAMMING) && !HAS_BED_PROBE
#error "ASSISTED_TRAMMING requires a bed probe."
#endif
/**
* G38 Probe Target
*/

Loading…
Cancel
Save