diff options
author | Danny Nguyen <danny@80pct.com> | 2017-04-03 12:51:31 -0400 |
---|---|---|
committer | Danny Nguyen <danny@80pct.com> | 2017-04-03 13:24:20 -0400 |
commit | d90ac762958eb77222a5277d64474f2aa3349176 (patch) | |
tree | 7490d51fc3692b411263f00a3761c3a50c1f8d04 | |
parent | 563961328be1605a7f3942f042572a0160ac2959 (diff) | |
download | qmk_firmware-d90ac762958eb77222a5277d64474f2aa3349176.tar.gz qmk_firmware-d90ac762958eb77222a5277d64474f2aa3349176.zip |
Move defines for RGB to after the config.h include
-rw-r--r-- | keyboards/lets_split/keymaps/OLED_sample/config.h | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/keyboards/lets_split/keymaps/OLED_sample/config.h b/keyboards/lets_split/keymaps/OLED_sample/config.h index 353ea368c6..8389ba111d 100644 --- a/keyboards/lets_split/keymaps/OLED_sample/config.h +++ b/keyboards/lets_split/keymaps/OLED_sample/config.h @@ -27,19 +27,16 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define TAPPING_FORCE_HOLD #define TAPPING_TERM 100 +#ifdef SUBPROJECT_rev1 + #include "../../rev1/config.h" +#endif +#ifdef SUBPROJECT_rev2 + #include "../../rev2/config.h" +#endif + #undef RGBLED_NUM #define RGBLIGHT_ANIMATIONS #define RGBLED_NUM 6 #define RGBLIGHT_HUE_STEP 10 #define RGBLIGHT_SAT_STEP 17 #define RGBLIGHT_VAL_STEP 17 - - - - -#ifdef SUBPROJECT_rev1 - #include "../../rev1/config.h" -#endif -#ifdef SUBPROJECT_rev2 - #include "../../rev2/config.h" -#endif
\ No newline at end of file |