1
0
Fork 0

debounce: remove direct quantum.h includes (#21480)

This commit is contained in:
Ryan 2023-07-09 11:05:20 +10:00 committed by GitHub
parent 333f4cb394
commit 7457e90887
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 13 additions and 18 deletions

View file

@ -17,9 +17,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
Basic global debounce algorithm. Used in 99% of keyboards at time of implementation
When no state changes have occured for DEBOUNCE milliseconds, we push the state.
*/
#include "matrix.h"
#include "debounce.h"
#include "timer.h"
#include "quantum.h"
#include <string.h>
#ifndef DEBOUNCE
# define DEBOUNCE 5