Fix matrix_clear() for new matrix API

This commit is contained in:
tmk 2016-10-05 14:00:48 +09:00
parent f76a786b93
commit 124bafe9f3
3 changed files with 3 additions and 73 deletions

View file

@ -28,7 +28,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
static void matrix_make(uint8_t code);
static void matrix_break(uint8_t code);
static void matrix_clear(void);
#ifdef MATRIX_HAS_GHOST
static bool matrix_has_ghost_in_row(uint8_t row);
#endif
@ -326,8 +325,7 @@ static void matrix_break(uint8_t code)
}
}
inline
static void matrix_clear(void)
void matrix_clear(void)
{
for (uint8_t i=0; i < MATRIX_ROWS; i++) matrix[i] = 0x00;
}