summaryrefslogtreecommitdiffstats
path: root/keyboards/chimera_ortho/chimera_ortho.c
diff options
context:
space:
mode:
authorpeepeetee <43021794+peepeetee@users.noreply.github.com>2022-02-01 03:47:38 +0800
committerGitHub <noreply@github.com>2022-01-31 11:47:38 -0800
commit3fefaf7f6b99aafe691a9024db4780684a588e4a (patch)
tree21145f7fe6804833211c2cd60aabfdb43a44c54d /keyboards/chimera_ortho/chimera_ortho.c
parent6cb0e8924ba258e112174b1dac36c88d16fbc560 (diff)
[Keyboard] move @GlenPickle 's chimera* boards into a folder (#16072)
Diffstat (limited to 'keyboards/chimera_ortho/chimera_ortho.c')
-rw-r--r--keyboards/chimera_ortho/chimera_ortho.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/keyboards/chimera_ortho/chimera_ortho.c b/keyboards/chimera_ortho/chimera_ortho.c
deleted file mode 100644
index 2cdc3d9331..0000000000
--- a/keyboards/chimera_ortho/chimera_ortho.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#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();
-}