atomic.c 233 B

123456789101112
  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. // Turn status LED on
  6. DDRE |= (1<<6);
  7. PORTE |= (1<<6);
  8. matrix_init_user();
  9. }