atomic.c 279 B

123456789101112131415
  1. #include "atomic.h"
  2. void matrix_init_kb(void) {
  3. // put your keyboard start-up code here
  4. // runs once when the firmware starts up
  5. MCUCR |= (1<<JTD);
  6. MCUCR |= (1<<JTD);
  7. // Turn status LED on
  8. DDRE |= (1<<6);
  9. PORTE |= (1<<6);
  10. matrix_init_user();
  11. }