diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-05-28 11:56:06 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2016-05-28 11:56:06 -0400 |
commit | de57799530d3184722532f93d156364067d8fcd5 (patch) | |
tree | e328efac498525222a5d415c0a7e1303a8c0d775 /keyboard/alps64/matrix.c | |
parent | 209ee3cd052b22b4cc32aecbc4b03cb8fb229a23 (diff) |
brings alps64 up-to-date (needs testing)
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 5638d7f69d..805999d4a1 100644 --- a/keyboard/alps64/matrix.c +++ b/keyboard/alps64/matrix.c @@ -55,10 +55,6 @@ uint8_t matrix_cols(void) return MATRIX_COLS; } -#define LED_ON() do { DDRC |= (1<<5); PORTC |= (1<<5); } while (0) -#define LED_OFF() do { DDRC &= ~(1<<5); PORTC &= ~(1<<5); } while (0) -#define LED_TGL() do { DDRC |= (1<<5); PINC |= (1<<5); } while (0) - void matrix_init(void) { // initialize row and col @@ -160,6 +156,7 @@ static void unselect_rows(void) PORTC &= ~0b00000100; } + static void select_row(uint8_t row) { // Output low(DDR:1, PORT:0) to select |