Browse Source

Decrease KILL_DELAY

Users hat to press kill-button for unexpexted lon times.
See #1593
AnHardt 10 years ago
parent
commit
d1658eebfc
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/Marlin_main.cpp

+ 2
- 2
Marlin/Marlin_main.cpp View File

5574
   
5574
   
5575
 #if defined(KILL_PIN) && KILL_PIN > -1
5575
 #if defined(KILL_PIN) && KILL_PIN > -1
5576
   static int killCount = 0;   // make the inactivity button a bit less responsive
5576
   static int killCount = 0;   // make the inactivity button a bit less responsive
5577
-   const int KILL_DELAY = 10000;
5577
+   const int KILL_DELAY = 750;
5578
 #endif
5578
 #endif
5579
 
5579
 
5580
 #if defined(FILRUNOUT_PIN) && FILRUNOUT_PIN > -1
5580
 #if defined(FILRUNOUT_PIN) && FILRUNOUT_PIN > -1
5585
 
5585
 
5586
 #if defined(HOME_PIN) && HOME_PIN > -1
5586
 #if defined(HOME_PIN) && HOME_PIN > -1
5587
    static int homeDebounceCount = 0;   // poor man's debouncing count
5587
    static int homeDebounceCount = 0;   // poor man's debouncing count
5588
-   const int HOME_DEBOUNCE_DELAY = 10000;
5588
+   const int HOME_DEBOUNCE_DELAY = 750;
5589
 #endif
5589
 #endif
5590
    
5590
    
5591
   
5591
   

Loading…
Cancel
Save