eh.c 277 B

1234567891011121314
  1. #include "lets_split_eh.h"
  2. void matrix_init_kb(void) {
  3. // JTAG disable for PORT F. write JTD bit twice within four cycles.
  4. MCUCR |= (1<<JTD);
  5. MCUCR |= (1<<JTD);
  6. // Undo init of RX LED, we use that port currently
  7. // DDRB &= ~(1<<0);
  8. matrix_init_user();
  9. };