Browse Source

Fix MP_SCARA compile (#21686)

ellensp 4 years ago
parent
commit
949d2d9e50
No account linked to committer's email address
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      Marlin/src/inc/Conditionals_LCD.h
  2. 1
    1
      Marlin/src/inc/SanityCheck.h

+ 1
- 1
Marlin/src/inc/Conditionals_LCD.h View File

921
   #define NORMAL_AXIS Z_AXIS
921
   #define NORMAL_AXIS Z_AXIS
922
 #endif
922
 #endif
923
 
923
 
924
-#if EITHER(MORGAN_SCARA, AXEL_TPARA)
924
+#if ANY(MORGAN_SCARA, MP_SCARA, AXEL_TPARA)
925
   #define IS_SCARA 1
925
   #define IS_SCARA 1
926
   #define IS_KINEMATIC 1
926
   #define IS_KINEMATIC 1
927
 #elif ENABLED(DELTA)
927
 #elif ENABLED(DELTA)

+ 1
- 1
Marlin/src/inc/SanityCheck.h View File

1251
 /**
1251
 /**
1252
  * Allow only one kinematic type to be defined
1252
  * Allow only one kinematic type to be defined
1253
  */
1253
  */
1254
-#if MANY(DELTA, MORGAN_SCARA, AXEL_TPARA, COREXY, COREXZ, COREYZ, COREYX, COREZX, COREZY, MARKFORGED_XY)
1254
+#if MANY(DELTA, MORGAN_SCARA, MP_SCARA, AXEL_TPARA, COREXY, COREXZ, COREYZ, COREYX, COREZX, COREZY, MARKFORGED_XY)
1255
   #error "Please enable only one of DELTA, MORGAN_SCARA, AXEL_TPARA, COREXY, COREYX, COREXZ, COREZX, COREYZ, COREZY, or MARKFORGED_XY."
1255
   #error "Please enable only one of DELTA, MORGAN_SCARA, AXEL_TPARA, COREXY, COREYX, COREXZ, COREZX, COREYZ, COREZY, or MARKFORGED_XY."
1256
 #endif
1256
 #endif
1257
 
1257
 

Loading…
Cancel
Save