diff options
| author | alex-ong <the.onga@gmail.com> | 2019-01-26 17:10:27 +1100 |
|---|---|---|
| committer | alex-ong <the.onga@gmail.com> | 2019-01-26 17:10:27 +1100 |
| commit | 123608fb318a42500d64d29aa46c7d08140033fd (patch) | |
| tree | 034040c60d2f5a5b768e4ada990c08aa195951c5 /quantum/debounce.h | |
| parent | d0b691df0ee74863ca54ca697aa4d4212cf401a7 (diff) | |
| download | qmk_firmware-123608fb318a42500d64d29aa46c7d08140033fd.tar.gz qmk_firmware-123608fb318a42500d64d29aa46c7d08140033fd.zip | |
DO NOT USE Revert back to original API to support split_keyboards.
Diffstat (limited to 'quantum/debounce.h')
| -rw-r--r-- | quantum/debounce.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/debounce.h b/quantum/debounce.h index 7fe2d693d..34b952ee7 100644 --- a/quantum/debounce.h +++ b/quantum/debounce.h | |||
| @@ -16,11 +16,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 16 | 16 | ||
| 17 | #include "matrix.h" | 17 | #include "matrix.h" |
| 18 | 18 | ||
| 19 | void debounce_init(void); //every debounce algorithm will have unique storage needs. | 19 | void debounce_init(uint8_t num_rows); //every debounce algorithm will have unique storage needs. |
| 20 | 20 | ||
| 21 | // raw is the current key state | 21 | // raw is the current key state |
| 22 | // cooked is the debounced input/output key state | 22 | // cooked is the debounced input/output key state |
| 23 | // changed is true if raw has changed since the last call | 23 | // changed is true if raw has changed since the last call |
| 24 | void debounce(matrix_row_t raw[], matrix_row_t cooked[], bool changed); | 24 | void debounce(matrix_row_t raw[], matrix_row_t cooked[], uint8_t num_rows, bool changed); |
| 25 | 25 | ||
| 26 | bool debounce_active(void); | 26 | bool debounce_active(void); |
