diff options
author | peepeetee <43021794+peepeetee@users.noreply.github.com> | 2022-02-01 03:47:38 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-31 11:47:38 -0800 |
commit | 3fefaf7f6b99aafe691a9024db4780684a588e4a (patch) | |
tree | 21145f7fe6804833211c2cd60aabfdb43a44c54d /keyboards/chimera_ls/chimera_ls.c | |
parent | 6cb0e8924ba258e112174b1dac36c88d16fbc560 (diff) | |
download | qmk_firmware-3fefaf7f6b99aafe691a9024db4780684a588e4a.tar.gz qmk_firmware-3fefaf7f6b99aafe691a9024db4780684a588e4a.zip |
[Keyboard] move @GlenPickle 's chimera* boards into a folder (#16072)
Diffstat (limited to 'keyboards/chimera_ls/chimera_ls.c')
-rw-r--r-- | keyboards/chimera_ls/chimera_ls.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/keyboards/chimera_ls/chimera_ls.c b/keyboards/chimera_ls/chimera_ls.c deleted file mode 100644 index f88e9a4f12..0000000000 --- a/keyboards/chimera_ls/chimera_ls.c +++ /dev/null @@ -1,16 +0,0 @@ -#include "chimera_ls.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(); -} |