diff options
author | Damien <Dbroqua@users.noreply.github.com> | 2017-04-13 13:26:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-13 13:26:02 +0200 |
commit | a43cb6c0af3ac616903172c4b8932bfc5ee4939b (patch) | |
tree | c3ca94b544ab832507b37b6268bb04f7f7eedb4a /keyboards/lets_split/keymaps/OLED_sample | |
parent | 3e41cde9f99778ca30c03b97470c32780379db43 (diff) | |
parent | d3301c0f8b0005738ab9aa2030d83739ffb5c4b6 (diff) |
Merge pull request #20 from qmk/master
Merge from QMK
Diffstat (limited to 'keyboards/lets_split/keymaps/OLED_sample')
-rw-r--r-- | keyboards/lets_split/keymaps/OLED_sample/config.h | 17 | ||||
-rw-r--r-- | keyboards/lets_split/keymaps/OLED_sample/keymap.c | 3 |
2 files changed, 10 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 diff --git a/keyboards/lets_split/keymaps/OLED_sample/keymap.c b/keyboards/lets_split/keymaps/OLED_sample/keymap.c index 072b825abe..493ebcd3f2 100644 --- a/keyboards/lets_split/keymaps/OLED_sample/keymap.c +++ b/keyboards/lets_split/keymaps/OLED_sample/keymap.c @@ -6,6 +6,9 @@ #ifdef AUDIO_ENABLE #include "audio.h" #endif +#ifdef SSD1306OLED + #include "ssd1306.h" +#endif extern keymap_config_t keymap_config; |