Skip to content
Snippets Groups Projects
Commit 04a69246 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Make DISABLE_INACTIVE_X, etc., the same as DISABLE_X (etc.) if missing

parent be08eb61
Branches
Tags
No related merge requests found
......@@ -360,6 +360,22 @@
#undef SD_DETECT_INVERTED
#endif
/**
* Set defaults for missing (newer) options
*/
#ifndef DISABLE_INACTIVE_X
#define DISABLE_INACTIVE_X DISABLE_X
#endif
#ifndef DISABLE_INACTIVE_Y
#define DISABLE_INACTIVE_Y DISABLE_Y
#endif
#ifndef DISABLE_INACTIVE_Z
#define DISABLE_INACTIVE_Z DISABLE_Z
#endif
#ifndef DISABLE_INACTIVE_E
#define DISABLE_INACTIVE_E DISABLE_E
#endif
// Power Signal Control Definitions
// By default use ATX definition
#ifndef POWER_SUPPLY
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment