summaryrefslogtreecommitdiff
path: root/keyboards/lets_split
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-09-06 06:36:31 +1000
committerGitHub <noreply@github.com>2021-09-05 21:36:31 +0100
commitfe6d6cf76dc827adb2f46d55217dc189eae21b02 (patch)
treee97fc05d0efb3064a0c89f719cc5df865959d651 /keyboards/lets_split
parent8a8fdd9a728a4cdc0ddce54fab9bf3b4ff8bf942 (diff)
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
Diffstat (limited to 'keyboards/lets_split')
-rw-r--r--keyboards/lets_split/rev1/rev1.c14
-rw-r--r--keyboards/lets_split/rev2/rev2.c22
-rw-r--r--keyboards/lets_split/sockets/sockets.c21
3 files changed, 0 insertions, 57 deletions
diff --git a/keyboards/lets_split/rev1/rev1.c b/keyboards/lets_split/rev1/rev1.c
index c243f71bc4..3caa114c22 100644
--- a/keyboards/lets_split/rev1/rev1.c
+++ b/keyboards/lets_split/rev1/rev1.c
@@ -1,15 +1 @@
1#include "lets_split.h" #include "lets_split.h"
2
3void matrix_init_kb(void) {
4
5 // // green led on
6 // DDRD |= (1<<5);
7 // PORTD &= ~(1<<5);
8
9 // // orange led on
10 // DDRB |= (1<<0);
11 // PORTB &= ~(1<<0);
12
13 matrix_init_user();
14};
15
diff --git a/keyboards/lets_split/rev2/rev2.c b/keyboards/lets_split/rev2/rev2.c
index 3ae967c073..3caa114c22 100644
--- a/keyboards/lets_split/rev2/rev2.c
+++ b/keyboards/lets_split/rev2/rev2.c
@@ -1,23 +1 @@
1#include "lets_split.h" #include "lets_split.h"
2
3
4#ifdef SSD1306OLED
5void led_set_kb(uint8_t usb_led) {
6 // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
7 led_set_user(usb_led);
8}
9#endif
10
11void matrix_init_kb(void) {
12
13 // // green led on
14 // DDRD |= (1<<5);
15 // PORTD &= ~(1<<5);
16
17 // // orange led on
18 // DDRB |= (1<<0);
19 // PORTB &= ~(1<<0);
20
21 matrix_init_user();
22};
23
diff --git a/keyboards/lets_split/sockets/sockets.c b/keyboards/lets_split/sockets/sockets.c
index d50678560a..3caa114c22 100644
--- a/keyboards/lets_split/sockets/sockets.c
+++ b/keyboards/lets_split/sockets/sockets.c
@@ -1,22 +1 @@
1#include "lets_split.h" #include "lets_split.h"
2
3
4#ifdef SSD1306OLED
5void led_set_kb(uint8_t usb_led) {
6 // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
7 led_set_user(usb_led);
8}
9#endif
10
11void matrix_init_kb(void) {
12
13 // // green led on
14 // DDRD |= (1<<5);
15 // PORTD &= ~(1<<5);
16
17 // // orange led on
18 // DDRB |= (1<<0);
19 // PORTB &= ~(1<<0);
20
21 matrix_init_user();
22};