~ruther/qmk_firmware

ref: e884414e1ef336361217f9e6a2dae9817bd19508 qmk_firmware/quantum/debounce.h -rw-r--r-- 360 bytes
e884414e — Takeshi ISHII fix helix/rev2:edvorakjp build error (#16433) 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
#pragma once

// raw is the current key state
// on entry cooked is the previous debounced state
// on exit cooked is the current debounced state
// changed is true if raw has changed since the last call
void debounce(matrix_row_t raw[], matrix_row_t cooked[], uint8_t num_rows, bool changed);

void debounce_init(uint8_t num_rows);

void debounce_free(void);