diff options
author | Ryan <fauxpark@gmail.com> | 2022-03-10 23:18:07 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-10 12:18:07 +0000 |
commit | bd70f5261cbb7fd4700bf9876da94c9661dadf63 (patch) | |
tree | e88eb58a89650625674cdd779794aec957f4522e /keyboards/bpiphany/pegasushoof | |
parent | dc8db6551d2d11534920d1d723d06a99c1b93071 (diff) |
Remove `matrix_key_count()` (#16603)
* Remove `matrix_key_count()`
* Remove `matrix_bitpop()`
Diffstat (limited to 'keyboards/bpiphany/pegasushoof')
-rw-r--r-- | keyboards/bpiphany/pegasushoof/2013/matrix.c | 9 | ||||
-rw-r--r-- | keyboards/bpiphany/pegasushoof/2015/matrix.c | 9 |
2 files changed, 0 insertions, 18 deletions
diff --git a/keyboards/bpiphany/pegasushoof/2013/matrix.c b/keyboards/bpiphany/pegasushoof/2013/matrix.c index 09244982d9..a55cba7afd 100644 --- a/keyboards/bpiphany/pegasushoof/2013/matrix.c +++ b/keyboards/bpiphany/pegasushoof/2013/matrix.c @@ -132,15 +132,6 @@ void matrix_print(void) } } -uint8_t matrix_key_count(void) -{ - uint8_t count = 0; - for (uint8_t i = 0; i < MATRIX_ROWS; i++) { - count += bitpop16(matrix[i]); - } - return count; -} - static matrix_row_t read_cols(void) { return diff --git a/keyboards/bpiphany/pegasushoof/2015/matrix.c b/keyboards/bpiphany/pegasushoof/2015/matrix.c index b05869feda..2b142f9fc8 100644 --- a/keyboards/bpiphany/pegasushoof/2015/matrix.c +++ b/keyboards/bpiphany/pegasushoof/2015/matrix.c @@ -111,15 +111,6 @@ void matrix_print(void) } } -uint8_t matrix_key_count(void) -{ - uint8_t count = 0; - for (uint8_t i = 0; i < matrix_rows(); i++) { - count += bitpop16(matrix_get_row(i)); - } - return count; -} - static matrix_row_t read_cols(void) { return |