Merge pull request #3146 from thinkyhead/rc_enabled_true_false
Support "true" and "false" in the ENABLED macro
This commit is contained in:
commit
d7c6fd5c2f
@ -6999,16 +6999,16 @@ void manage_inactivity(bool ignore_stepper_queue/*=false*/) {
|
|||||||
|
|
||||||
if (stepper_inactive_time && ms > previous_cmd_ms + stepper_inactive_time
|
if (stepper_inactive_time && ms > previous_cmd_ms + stepper_inactive_time
|
||||||
&& !ignore_stepper_queue && !blocks_queued()) {
|
&& !ignore_stepper_queue && !blocks_queued()) {
|
||||||
#if DISABLE_INACTIVE_X == true
|
#if ENABLED(DISABLE_INACTIVE_X)
|
||||||
disable_x();
|
disable_x();
|
||||||
#endif
|
#endif
|
||||||
#if DISABLE_INACTIVE_Y == true
|
#if ENABLED(DISABLE_INACTIVE_Y)
|
||||||
disable_y();
|
disable_y();
|
||||||
#endif
|
#endif
|
||||||
#if DISABLE_INACTIVE_Z == true
|
#if ENABLED(DISABLE_INACTIVE_Z)
|
||||||
disable_z();
|
disable_z();
|
||||||
#endif
|
#endif
|
||||||
#if DISABLE_INACTIVE_E == true
|
#if ENABLED(DISABLE_INACTIVE_E)
|
||||||
disable_e0();
|
disable_e0();
|
||||||
disable_e1();
|
disable_e1();
|
||||||
disable_e2();
|
disable_e2();
|
||||||
|
@ -17,6 +17,8 @@
|
|||||||
|
|
||||||
// Macros to support option testing
|
// Macros to support option testing
|
||||||
#define _CAT(a, ...) a ## __VA_ARGS__
|
#define _CAT(a, ...) a ## __VA_ARGS__
|
||||||
|
#define SWITCH_ENABLED_false 0
|
||||||
|
#define SWITCH_ENABLED_true 1
|
||||||
#define SWITCH_ENABLED_0 0
|
#define SWITCH_ENABLED_0 0
|
||||||
#define SWITCH_ENABLED_1 1
|
#define SWITCH_ENABLED_1 1
|
||||||
#define SWITCH_ENABLED_ 1
|
#define SWITCH_ENABLED_ 1
|
||||||
|
@ -421,15 +421,23 @@ void check_axes_activity() {
|
|||||||
block_index = next_block_index(block_index);
|
block_index = next_block_index(block_index);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (DISABLE_X && !axis_active[X_AXIS]) disable_x();
|
#if ENABLED(DISABLE_X)
|
||||||
if (DISABLE_Y && !axis_active[Y_AXIS]) disable_y();
|
if (!axis_active[X_AXIS]) disable_x();
|
||||||
if (DISABLE_Z && !axis_active[Z_AXIS]) disable_z();
|
#endif
|
||||||
if (DISABLE_E && !axis_active[E_AXIS]) {
|
#if ENABLED(DISABLE_Y)
|
||||||
|
if (!axis_active[Y_AXIS]) disable_y();
|
||||||
|
#endif
|
||||||
|
#if ENABLED(DISABLE_Z)
|
||||||
|
if (!axis_active[Z_AXIS]) disable_z();
|
||||||
|
#endif
|
||||||
|
#if ENABLED(DISABLE_E)
|
||||||
|
if (!axis_active[E_AXIS]) {
|
||||||
disable_e0();
|
disable_e0();
|
||||||
disable_e1();
|
disable_e1();
|
||||||
disable_e2();
|
disable_e2();
|
||||||
disable_e3();
|
disable_e3();
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#if HAS_FAN
|
#if HAS_FAN
|
||||||
#ifdef FAN_KICKSTART_TIME
|
#ifdef FAN_KICKSTART_TIME
|
||||||
|
Loading…
Reference in New Issue
Block a user