Remove empty override functions (#14312)
* Remove empty override functions, 0-9 * Remove empty override functions, A-D * Remove empty override functions, E-H * Remove empty override functions, handwired * Remove empty override functions, I-L * Remove empty override functions, M-P * Remove empty override functions, Q-T * Remove empty override functions, U-Z
This commit is contained in:
parent
8a8fdd9a72
commit
fe6d6cf76d
479 changed files with 66 additions and 8439 deletions
|
@ -59,7 +59,3 @@ void led_set_kb(uint8_t usb_led) {
|
|||
|
||||
indicator_leds_set(status);
|
||||
}
|
||||
|
||||
bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
|
||||
return process_record_user(keycode, record);
|
||||
}
|
||||
|
|
|
@ -121,16 +121,6 @@ void backlight_set(uint8_t level)
|
|||
backlight_toggle_rgb(level & BACKLIGHT_RGB);
|
||||
}
|
||||
|
||||
|
||||
|
||||
bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
|
||||
// put your per-action keyboard code here
|
||||
// runs for every action, just before processing by the firmware
|
||||
|
||||
return process_record_user(keycode, record);
|
||||
}
|
||||
|
||||
|
||||
void backlight_update_state()
|
||||
{
|
||||
cli();
|
||||
|
|
|
@ -25,19 +25,3 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_P1, KC_P2, KC_P3, KC_PENT,
|
||||
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT, KC_P0, KC_COMM),
|
||||
};
|
||||
|
||||
void matrix_init_user(void) {
|
||||
|
||||
}
|
||||
|
||||
void matrix_scan_user(void) {
|
||||
|
||||
}
|
||||
|
||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||
return true;
|
||||
}
|
||||
|
||||
void led_set_user(uint8_t usb_led) {
|
||||
|
||||
}
|
||||
|
|
|
@ -54,7 +54,3 @@ void led_set_kb(uint8_t usb_led) {
|
|||
|
||||
led_set_user(usb_led);
|
||||
}
|
||||
|
||||
bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
|
||||
return process_record_user(keycode, record);
|
||||
}
|
||||
|
|
|
@ -44,7 +44,3 @@ void led_set_kb(uint8_t usb_led) {
|
|||
backlight_os_state & (1<<USB_LED_CAPS_LOCK) ? (PORTB &= ~0b00000001) : (PORTB |= 0b00000001);
|
||||
backlight_os_state & (1<<USB_LED_SCROLL_LOCK) ? (PORTB &= ~0b00010000) : (PORTB |= 0b00010000);
|
||||
}
|
||||
|
||||
bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
|
||||
return process_record_user(keycode, record);
|
||||
}
|
||||
|
|
|
@ -111,7 +111,3 @@ void led_set_kb(uint8_t usb_led) {
|
|||
backlight_os_state & (1<<USB_LED_CAPS_LOCK) ? (PORTB &= ~0b00000001) : (PORTB |= 0b00000001);
|
||||
backlight_os_state & (1<<USB_LED_SCROLL_LOCK) ? (PORTB &= ~0b00010000) : (PORTB |= 0b00010000);
|
||||
}
|
||||
|
||||
bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
|
||||
return process_record_user(keycode, record);
|
||||
}
|
||||
|
|
|
@ -37,7 +37,3 @@ bool led_update_kb(led_t led_state) {
|
|||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
|
||||
return process_record_user(keycode, record);
|
||||
}
|
||||
|
|
|
@ -115,10 +115,6 @@ void backlight_set(uint8_t level) {
|
|||
// backlight_os_state & (1<<USB_LED_SCROLL_LOCK) ? (PORTB &= ~0b00010000) : (PORTB |= 0b00010000);
|
||||
// }
|
||||
|
||||
// bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
|
||||
// return process_record_user(keycode, record);
|
||||
// }
|
||||
|
||||
// U5 Pin 1, 2, 3 connected to top left LEDs
|
||||
|
||||
// U6 Pin 1, 2, 3 connected to bottom right leds col of 3
|
||||
|
@ -131,4 +127,4 @@ void backlight_set(uint8_t level) {
|
|||
// U5, U6, U7 Pin 8 VCC
|
||||
// U5, U6, U7 Pin 4 GRND
|
||||
|
||||
// U5 Pin 6 connected to atmega32u4 D4
|
||||
// U5 Pin 6 connected to atmega32u4 D4
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue