aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--users/mechmerlin/changelog.md5
-rw-r--r--users/mechmerlin/config.h18
2 files changed, 18 insertions, 5 deletions
diff --git a/users/mechmerlin/changelog.md b/users/mechmerlin/changelog.md
index d5877cfdf..ec4b20108 100644
--- a/users/mechmerlin/changelog.md
+++ b/users/mechmerlin/changelog.md
@@ -1,10 +1,13 @@
1# Changelog 1# Changelog
2All notable changes to my userspace will be documented in this file. 2All notable changes to my userspace will be documented in this file.
3 3
4## [0.2.1] - 2019-03-01
5### Fixed
6- `config.h` usage of `#ifdef RGBLIGHT_ENABLE` caused problems for other of my boards that had `RGBLIGHT_ENABLE`.
7
4## [0.2.0] - 2019-02-27 8## [0.2.0] - 2019-02-27
5### Changed 9### Changed
6- Moved `AUDIO_CLICKY` from community layout `66_ansi` into user space. 10- Moved `AUDIO_CLICKY` from community layout `66_ansi` into user space.
7-
8 11
9## [0.1.1] - 2018-10-26 12## [0.1.1] - 2018-10-26
10### Added 13### Added
diff --git a/users/mechmerlin/config.h b/users/mechmerlin/config.h
index 3c45162bc..9ca39a12a 100644
--- a/users/mechmerlin/config.h
+++ b/users/mechmerlin/config.h
@@ -18,10 +18,20 @@
18 18
19// Enable features depending on keyboard 19// Enable features depending on keyboard
20#if defined(KEYBOARD_clueboard_66_hotswap_prototype) 20#if defined(KEYBOARD_clueboard_66_hotswap_prototype)
21 #define RGBLIGHT_ENABLE 21 #ifndef RGBLIGHT_ENABLE
22 #define AUDIO_CLICKY 22 #define RGBLIGHT_ENABLE
23 #endif
24
25 #ifndef AUDIO_CLICKY
26 #define AUDIO_CLICKY
27 #endif
28
23#elif defined(KEYBOARD_clueboard_66_hotswap_gen1) 29#elif defined(KEYBOARD_clueboard_66_hotswap_gen1)
24 #define AUDIO_CLICKY 30 #ifndef AUDIO_CLICKY
31 #define AUDIO_CLICKY
32 #endif
25#else 33#else
26 #define RGBLIGHT_ENABLE 34 #ifndef RGBLIGHT_ENABLE
35 #define RGBLIGHT_ENABLE
36 #endif
27#endif 37#endif