chimera_ls.c 288 B

12345678910111213141516
  1. #include "chimera_ls.h"
  2. void led_init(void) {
  3. DDRD |= (1<<1);
  4. PORTD |= (1<<1);
  5. DDRF |= (1<<4) | (1<<5);
  6. PORTF |= (1<<4) | (1<<5);
  7. }
  8. void matrix_init_kb(void) {
  9. // put your keyboard start-up code here
  10. // runs once when the firmware starts up
  11. matrix_init_user();
  12. led_init();
  13. }