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