mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-11-04 07:12:33 +01:00 
			
		
		
		
	Fix compile error in debounce_eager_pk
This commit is contained in:
		
							parent
							
								
									503e02db79
								
							
						
					
					
						commit
						562c0d702a
					
				@ -18,9 +18,9 @@ After pressing a key, it immediately changes state, and sets a counter.
 | 
				
			|||||||
No further inputs are accepted until DEBOUNCE milliseconds have occurred.
 | 
					No further inputs are accepted until DEBOUNCE milliseconds have occurred.
 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "debounce.h"
 | 
					 | 
				
			||||||
#include "matrix.h"
 | 
					#include "matrix.h"
 | 
				
			||||||
#include "timer.h"
 | 
					#include "timer.h"
 | 
				
			||||||
 | 
					#include "quantum.h"
 | 
				
			||||||
#include <stdlib.h>
 | 
					#include <stdlib.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef DEBOUNCE
 | 
					#ifndef DEBOUNCE
 | 
				
			||||||
@ -114,7 +114,7 @@ void transfer_matrix_values(matrix_row_t raw[], matrix_row_t cooked[], uint8_t n
 | 
				
			|||||||
  }  
 | 
					  }  
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
bool debounce_active()
 | 
					bool debounce_active(void)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  return true;
 | 
					  return true;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user