summaryrefslogtreecommitdiff
path: root/keyboards/glenpickle/chimera_ortho/chimera_ortho.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/glenpickle/chimera_ortho/chimera_ortho.c')
-rw-r--r--keyboards/glenpickle/chimera_ortho/chimera_ortho.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/keyboards/glenpickle/chimera_ortho/chimera_ortho.c b/keyboards/glenpickle/chimera_ortho/chimera_ortho.c
new file mode 100644
index 0000000000..2cdc3d9331
--- /dev/null
+++ b/keyboards/glenpickle/chimera_ortho/chimera_ortho.c
@@ -0,0 +1,16 @@
+#include "chimera_ortho.h"
+
+void led_init(void) {
+ DDRD |= (1<<1);
+ PORTD |= (1<<1);
+ DDRF |= (1<<4) | (1<<5);
+ PORTF |= (1<<4) | (1<<5);
+}
+
+
+void matrix_init_kb(void) {
+ // put your keyboard start-up code here
+ // runs once when the firmware starts up
+ matrix_init_user();
+ led_init();
+}