Declare extruder_duplication_enabled in Marlin.h
This commit is contained in:
		@@ -129,6 +129,10 @@ void idle(
 | 
			
		||||
 | 
			
		||||
void manage_inactivity(bool ignore_stepper_queue = false);
 | 
			
		||||
 | 
			
		||||
#if ENABLED(DUAL_X_CARRIAGE)
 | 
			
		||||
  extern bool extruder_duplication_enabled;
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#if ENABLED(DUAL_X_CARRIAGE) && HAS_X_ENABLE && HAS_X2_ENABLE
 | 
			
		||||
  #define  enable_x() do { X_ENABLE_WRITE( X_ENABLE_ON); X2_ENABLE_WRITE( X_ENABLE_ON); } while (0)
 | 
			
		||||
  #define disable_x() do { X_ENABLE_WRITE(!X_ENABLE_ON); X2_ENABLE_WRITE(!X_ENABLE_ON); axis_known_position[X_AXIS] = false; } while (0)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user