diff options
| author | Ryan | 2023-07-09 03:05:20 +0200 |
|---|---|---|
| committer | GitHub | 2023-07-09 03:05:20 +0200 |
| commit | 7457e90887acecc6aea82a4ca738dd85cb25d939 (patch) | |
| tree | 1079b0446f66fedb59056b6b0aa77047b845726a /quantum/debounce.h | |
| parent | 333f4cb394ccfe73945ad3c79071c9bde0c50b48 (diff) | |
debounce: remove direct `quantum.h` includes (#21480)
Diffstat (limited to 'quantum/debounce.h')
| -rw-r--r-- | quantum/debounce.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/debounce.h b/quantum/debounce.h index a8629654c2..cea1f2b526 100644 --- a/quantum/debounce.h +++ b/quantum/debounce.h @@ -1,5 +1,9 @@ #pragma once +#include <stdint.h> +#include <stdbool.h> +#include "matrix.h" + /** * @brief Debounce raw matrix events according to the choosen debounce algorithm. * |