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.

42 lines
1.0 KiB

7 years ago
  1. #include "mitosis.h"
  2. void uart_init(void) {
  3. SERIAL_UART_INIT();
  4. }
  5. void led_init(void) {
  6. DDRD |= (1<<1);
  7. PORTD |= (1<<1);
  8. DDRF |= (1<<4) | (1<<5);
  9. PORTF |= (1<<4) | (1<<5);
  10. }
  11. void matrix_init_kb(void) {
  12. // put your keyboard start-up code here
  13. // runs once when the firmware starts up
  14. matrix_init_user();
  15. uart_init();
  16. led_init();
  17. }
  18. void matrix_scan_kb(void) {
  19. // put your looping keyboard code here
  20. // runs every cycle (a lot)
  21. matrix_scan_user();
  22. }
  23. void led_set_kb(uint8_t usb_led) {
  24. }
  25. #ifdef ONEHAND_ENABLE
  26. __attribute__ ((weak))
  27. const keypos_t hand_swap_config[MATRIX_ROWS][MATRIX_COLS] = {
  28. {{9, 0}, {8, 0}, {7, 0}, {6, 0}, {5, 0}, {4, 0}, {3, 0}, {2, 0}, {1, 0}, {0, 0}},
  29. {{9, 1}, {8, 1}, {7, 1}, {6, 1}, {5, 1}, {4, 1}, {3, 1}, {2, 1}, {1, 1}, {0, 1}},
  30. {{9, 2}, {8, 2}, {7, 2}, {6, 2}, {5, 2}, {4, 2}, {3, 2}, {2, 2}, {1, 2}, {0, 2}},
  31. {{9, 3}, {8, 3}, {7, 3}, {6, 3}, {5, 3}, {4, 3}, {3, 3}, {2, 3}, {1, 3}, {0, 3}},
  32. {{9, 4}, {8, 4}, {7, 4}, {6, 4}, {5, 4}, {4, 4}, {3, 4}, {2, 4}, {1, 4}, {0, 4}},
  33. };
  34. #endif