You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
279 B

8 years ago
8 years ago
  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. }