summaryrefslogtreecommitdiff
path: root/keyboards/ergo42/rev1/rev1.c
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2020-02-07 13:59:18 +0000
committerGitHub <noreply@github.com>2020-02-07 13:59:18 +0000
commit774cbbf879eaec2149413917cb970054e4c1bf59 (patch)
tree9d99536f7c8a0d1f53b15a940bbafad30a475db6 /keyboards/ergo42/rev1/rev1.c
parentc93093569ecd6024c43e9b0d2e8881e0f768c940 (diff)
parent75d4ff7d51160690558cf4bee1bae057f847b706 (diff)
Refactor ergo42 to use split_common (#7925)
* Initial refactor of ergo42 to split common * Prevent fallthrough for DIODE_DIRECTION
Diffstat (limited to 'keyboards/ergo42/rev1/rev1.c')
-rw-r--r--keyboards/ergo42/rev1/rev1.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/keyboards/ergo42/rev1/rev1.c b/keyboards/ergo42/rev1/rev1.c
index f2e8abb1a0..626a0893bb 100644
--- a/keyboards/ergo42/rev1/rev1.c
+++ b/keyboards/ergo42/rev1/rev1.c
@@ -1,22 +1 @@
#include "ergo42.h"
-
-#ifdef SSD1306OLED
-void led_set_kb(uint8_t usb_led) {
- // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
- led_set_user(usb_led);
-}
-#endif
-
-void matrix_init_kb(void) {
-
- // // green led on
- // DDRD |= (1<<5);
- // PORTD &= ~(1<<5);
-
- // // orange led on
- // DDRB |= (1<<0);
- // PORTB &= ~(1<<0);
-
- matrix_init_user();
-};
-