diff options
Diffstat (limited to 'keyboards/xelus/ninjin/ninjin.c')
-rw-r--r-- | keyboards/xelus/ninjin/ninjin.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/keyboards/xelus/ninjin/ninjin.c b/keyboards/xelus/ninjin/ninjin.c new file mode 100644 index 000000000..a474e4b40 --- /dev/null +++ b/keyboards/xelus/ninjin/ninjin.c | |||
@@ -0,0 +1,28 @@ | |||
1 | /* Copyright 2021 Harrison Chan (Xelus) | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #include "ninjin.h" | ||
18 | |||
19 | void eeconfig_init_kb(void) { // EEPROM is getting reset! | ||
20 | rgblight_enable(); // Enable RGB by default | ||
21 | rgblight_mode(RGBLIGHT_MODE_RGB_TEST); // set to RGBLIGHT_MODE_RGB_TEST by default | ||
22 | |||
23 | eeconfig_update_kb(0); | ||
24 | eeconfig_init_user(); | ||
25 | } | ||
26 | |||
27 | // Tested and verified working on Ninjin | ||
28 | void matrix_io_delay(void) { __asm__ volatile("nop\nnop\nnop\n"); } | ||