diff options
Diffstat (limited to 'keyboard/alps64/matrix.c')
| -rw-r--r-- | keyboard/alps64/matrix.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/keyboard/alps64/matrix.c b/keyboard/alps64/matrix.c index 5638d7f69..805999d4a 100644 --- a/keyboard/alps64/matrix.c +++ b/keyboard/alps64/matrix.c | |||
| @@ -55,10 +55,6 @@ uint8_t matrix_cols(void) | |||
| 55 | return MATRIX_COLS; | 55 | return MATRIX_COLS; |
| 56 | } | 56 | } |
| 57 | 57 | ||
| 58 | #define LED_ON() do { DDRC |= (1<<5); PORTC |= (1<<5); } while (0) | ||
| 59 | #define LED_OFF() do { DDRC &= ~(1<<5); PORTC &= ~(1<<5); } while (0) | ||
| 60 | #define LED_TGL() do { DDRC |= (1<<5); PINC |= (1<<5); } while (0) | ||
| 61 | |||
| 62 | void matrix_init(void) | 58 | void matrix_init(void) |
| 63 | { | 59 | { |
| 64 | // initialize row and col | 60 | // initialize row and col |
| @@ -160,6 +156,7 @@ static void unselect_rows(void) | |||
| 160 | PORTC &= ~0b00000100; | 156 | PORTC &= ~0b00000100; |
| 161 | } | 157 | } |
| 162 | 158 | ||
| 159 | |||
| 163 | static void select_row(uint8_t row) | 160 | static void select_row(uint8_t row) |
| 164 | { | 161 | { |
| 165 | // Output low(DDR:1, PORT:0) to select | 162 | // Output low(DDR:1, PORT:0) to select |
