summaryrefslogtreecommitdiff
path: root/keyboards/handwired/promethium/matrix.c
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2022-03-10 12:18:47 +0000
committerQMK Bot <hello@qmk.fm>2022-03-10 12:18:47 +0000
commitcf44bde909f8da51fce7a36b345e2c06dd05faf3 (patch)
tree1c49c11c6d971a7c79a34ca695a87fc511baeaf9 /keyboards/handwired/promethium/matrix.c
parentcb65c7755ead2115296d7a346b907853e306ba10 (diff)
parentbd70f5261cbb7fd4700bf9876da94c9661dadf63 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/handwired/promethium/matrix.c')
-rw-r--r--keyboards/handwired/promethium/matrix.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/keyboards/handwired/promethium/matrix.c b/keyboards/handwired/promethium/matrix.c
index 90dbce14a9..3b03ab8893 100644
--- a/keyboards/handwired/promethium/matrix.c
+++ b/keyboards/handwired/promethium/matrix.c
@@ -43,17 +43,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#if (MATRIX_COLS <= 8)
# define print_matrix_header() print("\nr/c 01234567\n")
# define print_matrix_row(row) print_bin_reverse8(matrix_get_row(row))
-# define matrix_bitpop(i) bitpop(matrix[i])
# define ROW_SHIFTER ((uint8_t)1)
#elif (MATRIX_COLS <= 16)
# define print_matrix_header() print("\nr/c 0123456789ABCDEF\n")
# define print_matrix_row(row) print_bin_reverse16(matrix_get_row(row))
-# define matrix_bitpop(i) bitpop16(matrix[i])
# define ROW_SHIFTER ((uint16_t)1)
#elif (MATRIX_COLS <= 32)
# define print_matrix_header() print("\nr/c 0123456789ABCDEF0123456789ABCDEF\n")
# define print_matrix_row(row) print_bin_reverse32(matrix_get_row(row))
-# define matrix_bitpop(i) bitpop32(matrix[i])
# define ROW_SHIFTER ((uint32_t)1)
#endif
@@ -178,16 +175,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 += matrix_bitpop(i);
- }
- return count;
-}
-
-
#define ROW_MASK 0b11100000
static const uint8_t row_bit[MATRIX_ROWS] = {