-
- Downloads
Check probes only when deployed
Aim: Test probes in update_endstops only when activated Changes: Configurations Add define for FIX_MOUNTED_PROBE to handle the situation where formerly ENDSTOPS_ONLY_FOR_HOMING had to be set, or lowering the nozzle below Z_PROBE_OFFSET_FROM_EXTRUDER could give an "endstop hit" message. Add define for Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN to indicate a common situation, that we have a probe but it is connected to an endstop pin Add some comments Shift some entries to have related things together. Conditionals.h We have a probe (HAS_Z_MIN_PROBE) if one of the pins is defined AND one of the probes is defined. SanityCheck.h Add some tests if the probe is connected and if we have defined a probe. stepper.cpp Changes to test the probe only when it is deployed (z_probe_is_active). Test update_endstops() when the probe is deployed. MarlinMain.cpp a. set and reset z_probe_is_active in deploy_z_probe(), stow_z_probe() and dock_sled() b. set and reset z_probe_is_active in the case a z-servo is moved to a defined position. The only remaining unhandled servo move is in M280 where we do not end in a defined position. If you want to handle a probe use M401/402 c. skip deploying/stowing when already deployed/stowed in the dedicated deploy/stow functions. d. Handle the new FIX_MOUNTED_PROBE in parallel to a servo driven probe/endstop. To do: In another PR. handle all probes in deploy/stow_z_probe. Sort out SERVO_LEVELING vs. HAS_SERVO_ENDSTOPS.
Showing
- Marlin/Conditionals.h 5 additions, 0 deletionsMarlin/Conditionals.h
- Marlin/Configuration.h 63 additions, 40 deletionsMarlin/Configuration.h
- Marlin/Marlin_main.cpp 73 additions, 30 deletionsMarlin/Marlin_main.cpp
- Marlin/SanityCheck.h 28 additions, 0 deletionsMarlin/SanityCheck.h
- Marlin/example_configurations/Felix/Configuration.h 57 additions, 33 deletionsMarlin/example_configurations/Felix/Configuration.h
- Marlin/example_configurations/Felix/Configuration_DUAL.h 57 additions, 33 deletionsMarlin/example_configurations/Felix/Configuration_DUAL.h
- Marlin/example_configurations/Hephestos/Configuration.h 57 additions, 33 deletionsMarlin/example_configurations/Hephestos/Configuration.h
- Marlin/example_configurations/Hephestos_2/Configuration.h 43 additions, 32 deletionsMarlin/example_configurations/Hephestos_2/Configuration.h
- Marlin/example_configurations/K8200/Configuration.h 57 additions, 33 deletionsMarlin/example_configurations/K8200/Configuration.h
- Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h 57 additions, 33 deletions...le_configurations/RepRapWorld/Megatronics/Configuration.h
- Marlin/example_configurations/RigidBot/Configuration.h 57 additions, 33 deletionsMarlin/example_configurations/RigidBot/Configuration.h
- Marlin/example_configurations/SCARA/Configuration.h 57 additions, 33 deletionsMarlin/example_configurations/SCARA/Configuration.h
- Marlin/example_configurations/TAZ4/Configuration.h 57 additions, 2 deletionsMarlin/example_configurations/TAZ4/Configuration.h
- Marlin/example_configurations/WITBOX/Configuration.h 57 additions, 33 deletionsMarlin/example_configurations/WITBOX/Configuration.h
- Marlin/example_configurations/adafruit/ST7565/Configuration.h 57 additions, 33 deletions...in/example_configurations/adafruit/ST7565/Configuration.h
- Marlin/example_configurations/delta/biv2.5/Configuration.h 57 additions, 33 deletionsMarlin/example_configurations/delta/biv2.5/Configuration.h
- Marlin/example_configurations/delta/generic/Configuration.h 57 additions, 33 deletionsMarlin/example_configurations/delta/generic/Configuration.h
- Marlin/example_configurations/delta/kossel_mini/Configuration.h 57 additions, 33 deletions.../example_configurations/delta/kossel_mini/Configuration.h
- Marlin/example_configurations/delta/kossel_pro/Configuration.h 57 additions, 33 deletions...n/example_configurations/delta/kossel_pro/Configuration.h
- Marlin/example_configurations/delta/kossel_xl/Configuration.h 57 additions, 33 deletions...in/example_configurations/delta/kossel_xl/Configuration.h
Loading
Please register or sign in to comment