Remove matrix_key_count() from matrix.h
This commit is contained in:
		
							parent
							
								
									9e9a85c142
								
							
						
					
					
						commit
						81d2753ab0
					
				
					 2 changed files with 0 additions and 16 deletions
				
			
		| 
						 | 
				
			
			@ -182,19 +182,6 @@ void matrix_print(void)
 | 
			
		|||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
uint8_t matrix_key_count(void)
 | 
			
		||||
{
 | 
			
		||||
    uint8_t count = 0;
 | 
			
		||||
    for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
 | 
			
		||||
#if (MATRIX_COLS <= 8)
 | 
			
		||||
        count += bitpop(matrix[i]);
 | 
			
		||||
#else
 | 
			
		||||
        count += bitpop16(matrix[i]);
 | 
			
		||||
#endif
 | 
			
		||||
    }
 | 
			
		||||
    return count;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#ifdef MATRIX_HAS_GHOST
 | 
			
		||||
inline
 | 
			
		||||
static bool matrix_has_ghost_in_row(uint8_t row)
 | 
			
		||||
| 
						 | 
				
			
			@ -205,7 +192,6 @@ static bool matrix_has_ghost_in_row(uint8_t row)
 | 
			
		|||
 | 
			
		||||
    // ghost exists in case same state as other row
 | 
			
		||||
    for (uint8_t i=0; i < MATRIX_ROWS; i++) {
 | 
			
		||||
        //if (i != row && (matrix[i] & matrix[row]) == matrix[row])
 | 
			
		||||
        if (i != row && (matrix[i] & matrix[row]))
 | 
			
		||||
            return true;
 | 
			
		||||
    }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue