Merge remote-tracking branch 'origin/master' into develop

This commit is contained in:
QMK Bot
2021-09-05 20:37:03 +00:00
485 changed files with 187 additions and 8517 deletions

View File

@@ -41,17 +41,8 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
void led_set_user(uint8_t usb_led) {
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
PORTB &= ~(1<<1); // LO
writePinLow(B1);
} else {
PORTB |= (1<<1); // HI
writePinHigh(B1);
}
}
void matrix_init_user(void) {
}
void matrix_scan_user(void) {
}

View File

@@ -26,7 +26,3 @@ void led_init_ports(void) {
* Side1: Low B3
* Side2: Low B2
*/
void led_set_kb(uint8_t usb_led) {
led_set_user(usb_led);
}