Browse Source

fixed compilation

bkubicek 9 years ago
parent
commit
d02daec08f
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      Marlin/Marlin.h
  2. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin.h View File

@@ -103,7 +103,7 @@ FORCE_INLINE void serialprintPGM(const char *str)
103 103
 void get_command();
104 104
 void process_commands();
105 105
 
106
-void manage_inactivity();
106
+void manage_inactivity(bool ignore_stepper_queue=false)
107 107
 
108 108
 #if defined(DUAL_X_CARRIAGE) && defined(X_ENABLE_PIN) && X_ENABLE_PIN > -1 \
109 109
     && defined(X2_ENABLE_PIN) && X2_ENABLE_PIN > -1

+ 1
- 1
Marlin/Marlin_main.cpp View File

@@ -4312,7 +4312,7 @@ void handle_status_leds(void) {
4312 4312
 }
4313 4313
 #endif
4314 4314
 
4315
-void manage_inactivity(bool ignore_stepper_queue=false)
4315
+void manage_inactivity(bool ignore_stepper_queue/*=false*/) //default argument set in Marlin.h
4316 4316
 {
4317 4317
 	
4318 4318
 #if defined(KILL_PIN) && KILL_PIN > -1

Loading…
Cancel
Save