|
|
@ -76,15 +76,8 @@ static matrix_row_t get_real_keys(uint8_t row, matrix_row_t rowdata){
|
|
|
|
|
|
|
|
|
|
|
|
static inline bool countones(matrix_row_t row)
|
|
|
|
static inline bool countones(matrix_row_t row)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
int count = 0;
|
|
|
|
row &= row-1;
|
|
|
|
while (row > 0){
|
|
|
|
return row;
|
|
|
|
count += 1;
|
|
|
|
|
|
|
|
row &= row-1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count > 1){
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline bool has_ghost_in_row(uint8_t row, matrix_row_t rowdata)
|
|
|
|
static inline bool has_ghost_in_row(uint8_t row, matrix_row_t rowdata)
|
|
|
|