~ruther/qmk_firmware

ref: dda6e7fb36f20821c60fbd7638c9bd016ef217d6 qmk_firmware/users/brandonschlack/config.h -rw-r--r-- 1.5 KiB
dda6e7fb — Ryan LED drivers: register naming cleanups (#22436) 1 year, 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* Copyright 2020 Brandon Schlack
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
#pragma once

#define TAPPING_TOGGLE 2
#define TAPPING_TERM 200
#define PERMISSIVE_HOLD
#define TAP_HOLD_CAPS_DELAY 200

#ifdef RGBLIGHT_ENABLE
#   define RGBLIGHT_SLEEP
#endif

#if defined(RGBLIGHT_ENABLE) || defined(RGB_MATRIX_ENABLE) && !defined(RGBLIGHT_LAYERS)
#   define RGB_THEME_ENABLE
#endif

#ifdef RGB_THEME_ENABLE
#   define DISABLE_RGB_THEME_JAMON
#   define DISABLE_RGB_THEME_OBLIQUE
#endif

#ifdef ENCODER_ENABLE
#    define TAP_CODE_DELAY 10
#else
#    define TAP_CODE_DELAY 5
#endif

/* Disable unused and unneeded features to reduce on firmware size */
#ifndef NO_ACTION_MACRO
#   define NO_ACTION_MACRO
#endif
#ifndef NO_ACTION_FUNCTION
#   define NO_ACTION_FUNCTION
#endif

#ifdef LOCKING_SUPPORT_ENABLE
#    undef LOCKING_SUPPORT_ENABLE
#endif
#ifdef LOCKING_RESYNC_ENABLE
#    undef LOCKING_RESYNC_ENABLE
#endif
Do not follow this link