2016-03-16 16:27:04 +01:00
|
|
|
#include "retro_refit.h"
|
2016-06-24 04:18:20 +02:00
|
|
|
#include "led.h"
|
2016-03-16 16:27:04 +01:00
|
|
|
|
2016-03-23 02:58:44 +01:00
|
|
|
void matrix_init_kb(void) {
|
2016-04-18 03:14:37 +02:00
|
|
|
// put your keyboard start-up code here
|
|
|
|
// runs once when the firmware starts up
|
|
|
|
|
|
|
|
// Disable status LED on KB, enable status LED on Teensy (KB_STATUS = !TEENSY_STATUS)
|
|
|
|
DDRD |= (1<<6);
|
|
|
|
PORTD |= (1<<6);
|
|
|
|
|
|
|
|
matrix_init_user();
|
2016-03-16 16:27:04 +01:00
|
|
|
};
|
|
|
|
|
2016-03-23 02:58:44 +01:00
|
|
|
void led_set_kb(uint8_t usb_led) {
|
2016-04-18 03:14:37 +02:00
|
|
|
// put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
|
2016-03-16 16:27:04 +01:00
|
|
|
|
|
|
|
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
|
|
|
|
// output low
|
|
|
|
DDRD |= (1<<0);
|
|
|
|
PORTD &= ~(1<<0);
|
|
|
|
} else {
|
|
|
|
// Hi-Z
|
|
|
|
DDRD &= ~(1<<0);
|
|
|
|
PORTD &= ~(1<<0);
|
|
|
|
}
|
|
|
|
if (usb_led & (1<<USB_LED_NUM_LOCK)) {
|
|
|
|
// output low
|
|
|
|
DDRD |= (1<<1);
|
|
|
|
PORTD &= ~(1<<1);
|
|
|
|
} else {
|
|
|
|
// Hi-Z
|
|
|
|
DDRD &= ~(1<<1);
|
|
|
|
PORTD &= ~(1<<1);
|
|
|
|
}
|
|
|
|
if (usb_led & (1<<USB_LED_SCROLL_LOCK)) {
|
|
|
|
// output low
|
|
|
|
DDRC |= (1<<6);
|
|
|
|
PORTC &= ~(1<<6);
|
|
|
|
} else {
|
|
|
|
// Hi-Z
|
|
|
|
DDRC &= ~(1<<6);
|
|
|
|
PORTC &= ~(1<<6);
|
2016-04-18 03:14:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
led_set_user(usb_led);
|
2016-03-16 16:27:04 +01:00
|
|
|
};
|