comet46.c 377 B

12345678910111213141516171819202122
  1. #include "comet46.h"
  2. void uart_init(void) {
  3. SERIAL_UART_INIT();
  4. }
  5. void matrix_init_kb(void) {
  6. // put your keyboard start-up code here
  7. // runs once when the firmware starts up
  8. matrix_init_user();
  9. uart_init();
  10. }
  11. void matrix_scan_kb(void) {
  12. // put your looping keyboard code here
  13. // runs every cycle (a lot)
  14. matrix_scan_user();
  15. }
  16. void led_set_kb(uint8_t usb_led) {
  17. }