2017-09-19 16:27:46 +02:00
|
|
|
#include "dz60.h"
|
2017-11-02 21:29:27 +01:00
|
|
|
#include "led.h"
|
|
|
|
|
|
|
|
void matrix_init_kb(void) {
|
|
|
|
// Keyboard start-up code goes here
|
|
|
|
// Runs once when the firmware starts up
|
|
|
|
matrix_init_user();
|
|
|
|
led_init_ports();
|
|
|
|
};
|
|
|
|
|
|
|
|
void matrix_scan_kb(void) {
|
|
|
|
// Looping keyboard code goes here
|
|
|
|
// This runs every cycle (a lot)
|
|
|
|
matrix_scan_user();
|
|
|
|
};
|
|
|
|
|
|
|
|
void led_init_ports(void) {
|
|
|
|
// Set caps lock LED pin as output
|
2017-11-03 09:31:33 +01:00
|
|
|
DDRB |= (1 << 2);
|
|
|
|
// Default to off
|
|
|
|
PORTB |= (1 << 2);
|
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)) {
|
|
|
|
PORTB &= ~(1 << 2);
|
|
|
|
} else {
|
2018-12-25 20:01:54 +01:00
|
|
|
PORTB |= (1 << 2);
|
2018-07-30 00:18:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
led_set_user(usb_led);
|
2017-11-02 21:29:27 +01:00
|
|
|
}
|