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.

16 lines
291 B

  1. #include "chimera_ortho.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. }