aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/ergo42/rev1/rev1.c
diff options
context:
space:
mode:
authorzvecr <git@zvecr.com>2020-01-17 18:50:58 +0000
committerzvecr <git@zvecr.com>2020-01-17 18:50:58 +0000
commit952e805edb5b5c42a8bbe35b6689c28943a53858 (patch)
tree6d0056c1f64b0504fbe1c08596ec5ec0871f527f /keyboards/ergo42/rev1/rev1.c
parent619ee543b8093f643585870db87bad06630c39d4 (diff)
downloadfirmware-952e805edb5b5c42a8bbe35b6689c28943a53858.tar.gz
firmware-952e805edb5b5c42a8bbe35b6689c28943a53858.tar.bz2
firmware-952e805edb5b5c42a8bbe35b6689c28943a53858.zip
Initial refactor of ergo42 to split common
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 f2e8abb1a..626a0893b 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();
-};
-