2017-09-19 10:27:46 -04:00
|
|
|
#include "dz60.h"
|
2017-11-02 16:29:27 -04:00
|
|
|
|
|
|
|
|
void matrix_init_kb(void) {
|
2020-05-17 02:10:54 -04:00
|
|
|
matrix_init_user();
|
|
|
|
|
led_init_ports();
|
2017-11-02 16:29:27 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void led_init_ports(void) {
|
2020-05-17 02:10:54 -04:00
|
|
|
setPinOutput(B2);
|
|
|
|
|
writePinHigh(B2);
|
2017-11-02 16:29:27 -04:00
|
|
|
}
|
2017-09-19 10:27:46 -04:00
|
|
|
|
|
|
|
|
void led_set_kb(uint8_t usb_led) {
|
2018-07-29 18:18:45 -04:00
|
|
|
if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
|
2020-05-17 02:10:54 -04:00
|
|
|
writePinLow(B2);
|
2018-07-29 18:18:45 -04:00
|
|
|
} else {
|
2020-05-17 02:10:54 -04:00
|
|
|
writePinHigh(B2);
|
2018-07-29 18:18:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
led_set_user(usb_led);
|
2017-11-02 16:29:27 -04:00
|
|
|
}
|