mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-19 16:16:13 +00:00
🩺 Check some axis-parameter collisions
This commit is contained in:
parent
13ce5aa1ed
commit
33fa3aba10
3 changed files with 12 additions and 0 deletions
|
@ -24,6 +24,10 @@
|
|||
|
||||
#if HAS_L64XX
|
||||
|
||||
#if AXIS_COLLISION('I')
|
||||
#error "M906 parameter collision with axis name."
|
||||
#endif
|
||||
|
||||
#include "../../gcode.h"
|
||||
#include "../../../libs/L64XX/L64XX_Marlin.h"
|
||||
#include "../../../module/stepper/indirection.h"
|
||||
|
|
|
@ -24,6 +24,10 @@
|
|||
|
||||
#if HAS_STEALTHCHOP
|
||||
|
||||
#if AXIS_COLLISION('I')
|
||||
#error "M569 parameter collision with axis name."
|
||||
#endif
|
||||
|
||||
#include "../../gcode.h"
|
||||
#include "../../../feature/tmc_util.h"
|
||||
#include "../../../module/stepper/indirection.h"
|
||||
|
|
|
@ -24,6 +24,10 @@
|
|||
|
||||
#if ENABLED(BEZIER_CURVE_SUPPORT)
|
||||
|
||||
#if AXIS_COLLISION('I') || AXIS_COLLISION('J')
|
||||
#error "G5 parameter collision with axis name."
|
||||
#endif
|
||||
|
||||
#include "../../module/motion.h"
|
||||
#include "../../module/planner_bezier.h"
|
||||
|
||||
|
|
Loading…
Reference in a new issue