Browse Source

Merge pull request #1631 from AnHardt/iss1593

Decrease KILL_DELAY
Scott Lahteine 10 years ago
parent
commit
80e0ee10ca
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/Marlin_main.cpp

+ 2
- 2
Marlin/Marlin_main.cpp View File

5578
   
5578
   
5579
 #if defined(KILL_PIN) && KILL_PIN > -1
5579
 #if defined(KILL_PIN) && KILL_PIN > -1
5580
   static int killCount = 0;   // make the inactivity button a bit less responsive
5580
   static int killCount = 0;   // make the inactivity button a bit less responsive
5581
-   const int KILL_DELAY = 10000;
5581
+   const int KILL_DELAY = 750;
5582
 #endif
5582
 #endif
5583
 
5583
 
5584
 #if defined(FILRUNOUT_PIN) && FILRUNOUT_PIN > -1
5584
 #if defined(FILRUNOUT_PIN) && FILRUNOUT_PIN > -1
5589
 
5589
 
5590
 #if defined(HOME_PIN) && HOME_PIN > -1
5590
 #if defined(HOME_PIN) && HOME_PIN > -1
5591
    static int homeDebounceCount = 0;   // poor man's debouncing count
5591
    static int homeDebounceCount = 0;   // poor man's debouncing count
5592
-   const int HOME_DEBOUNCE_DELAY = 10000;
5592
+   const int HOME_DEBOUNCE_DELAY = 750;
5593
 #endif
5593
 #endif
5594
    
5594
    
5595
   
5595
   

Loading…
Cancel
Save