1
0
Fork 0

alps64: Change keymaps and USB descriptors.

This commit is contained in:
tmk 2015-06-26 08:49:03 +09:00
parent 070a6be638
commit 507ebb34f5
4 changed files with 19 additions and 9 deletions

View file

@ -55,6 +55,10 @@ 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
@ -66,6 +70,12 @@ void matrix_init(void)
matrix[i] = 0;
matrix_debouncing[i] = 0;
}
//debug
debug_matrix = true;
LED_ON();
_delay_ms(500);
LED_OFF();
}
uint8_t matrix_scan(void)