diff options
author | Stefan Kerkmann <karlk90@pm.me> | 2021-11-29 17:22:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-29 08:22:10 -0800 |
commit | c1297ceb972d45407cc1f518fd0527efda7ee796 (patch) | |
tree | 6ef5fb395de5062f48089d948faea62d8cdf64ce /keyboards/ergodox_stm32 | |
parent | a3e9b347ecbb55a58dfca4bb7a47e5abd21f6369 (diff) | |
download | qmk_firmware-c1297ceb972d45407cc1f518fd0527efda7ee796.tar.gz qmk_firmware-c1297ceb972d45407cc1f518fd0527efda7ee796.zip |
[Core] Remove matrix_is_modified() and debounce_is_active() (#15349)
Diffstat (limited to 'keyboards/ergodox_stm32')
-rw-r--r-- | keyboards/ergodox_stm32/matrix.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/keyboards/ergodox_stm32/matrix.c b/keyboards/ergodox_stm32/matrix.c index 383bf9790a..094d4a9e0f 100644 --- a/keyboards/ergodox_stm32/matrix.c +++ b/keyboards/ergodox_stm32/matrix.c @@ -119,10 +119,6 @@ uint8_t matrix_scan(void) { return 0; } -bool matrix_is_modified(void) { - return true; -} - inline bool matrix_is_on(uint8_t row, uint8_t col) { return (matrix[row] & (1 << col)); |