]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/comet46/comet46.c
Usbasploader bootloader option addition (#6304)
[qmk_firmware.git] / keyboards / comet46 / comet46.c
1 #include "comet46.h"
2
3 void uart_init(void) {
4         SERIAL_UART_INIT();
5 }
6
7 void matrix_init_kb(void) {
8         // put your keyboard start-up code here
9         // runs once when the firmware starts up
10         matrix_init_user();
11         uart_init();
12 }
13
14 void matrix_scan_kb(void) {
15         // put your looping keyboard code here
16         // runs every cycle (a lot)
17         matrix_scan_user();
18 }
19
20 void led_set_kb(uint8_t usb_led) {
21
22 }