123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- // Copyright 2020 Christopher Courtney, aka Drashna Jael're (@drashna) <drashna@live.com>
- // SPDX-License-Identifier: GPL-2.0-or-later
- #pragma once
- // Use custom magic number so that when switching branches, EEPROM always gets reset
- #define EECONFIG_MAGIC_NUMBER (uint16_t)0x1339
- #ifdef IS_COMMAND
- # undef IS_COMMAND
- #endif
- #define IS_COMMAND() (((get_mods() | get_oneshot_mods()) & MOD_MASK_SHIFT) == MOD_MASK_SHIFT)
- #if defined(SPLIT_KEYBOARD)
- # include "split/split_config.h"
- #endif
- #ifdef RGBLIGHT_ENABLE
- # include "rgb/rgblight_config.h"
- #endif // RGBLIGHT_ENABLE
- #ifdef RGB_MATRIX_ENABLE
- # include "rgb/rgb_matrix_config.h"
- #endif // RGB_MATRIX_ENABLE
- #ifdef OLED_ENABLE
- # include "oled/oled_config.h"
- #endif
- #if defined(WPM_ENABLE)
- // # define WPM_LAUNCH_CONTROL
- // # define WPM_ALLOW_COUNT_REGRESSOIN
- // # define WPM_UNFILTERED
- # define WPM_SAMPLE_SECONDS 10
- # define WPM_SAMPLE_PERIODS 50
- # define WPM_ESTIMATED_WORD_SIZE 5
- #endif
- #ifdef AUDIO_ENABLE
- # define AUDIO_CLICKY
- # define AUDIO_CLICKY_FREQ_RANDOMNESS 1.5f
- # ifdef USER_SONG_LIST
- # define STARTUP_SONG SONG(RICK_ROLL)
- # define GOODBYE_SONG SONG(SONIC_RING)
- # define DEFAULT_LAYER_SONGS \
- { SONG(QWERTY_SOUND), SONG(COLEMAK_SOUND), SONG(DVORAK_SOUND), SONG(OVERWATCH_THEME) }
- # define UNICODE_SONG_MAC SONG(MARIO_THEME)
- # define UNICODE_SONG_LNX SONG(MARIO_POWERUP)
- # define UNICODE_SONG_WIN SONG(MARIO_ONEUP)
- # define UNICODE_SONG_BSD SONG(RICK_ROLL)
- # define UNICODE_SONG_WINC SONG(RICK_ROLL)
- # else
- # define STARTUP_SONG SONG(STARTUP_SOUND)
- # define GOODBYE_SONG SONG(GOODBYE_SOUND)
- # define DEFAULT_LAYER_SONGS \
- { SONG(QWERTY_SOUND), SONG(COLEMAK_SOUND), SONG(DVORAK_SOUND), SONG(WORKMAN_SOUND) }
- # define UNICODE_SONG_MAC SONG(QWERTY_SOUND)
- # define UNICODE_SONG_LNX SONG(COLEMAK_SOUND)
- # define UNICODE_SONG_WIN SONG(DVORAK_SOUND)
- # define UNICODE_SONG_BSD SONG(WORKMAN_SOUND)
- # define UNICODE_SONG_WINC SONG(PLOVER_GOODBYE_SOUND)
- # endif
- #endif // !AUDIO_ENABLE
- #define UNICODE_SELECTED_MODES UNICODE_MODE_WINCOMPOSE, UNICODE_MODE_MACOS
- // #define WPM_ESTIMATED_WORD_SIZE 5
- #define WPM_ALLOW_COUNT_REGRESSION
- // #define WPM_UNFILTERED
- // #define WPM_SAMPLE_SECONDS 5
- // #define WPM_SAMPLE_PERIODS 50
- // #define WPM_LAUNCH_CONTROL
- #ifndef ONESHOT_TAP_TOGGLE
- # define ONESHOT_TAP_TOGGLE 2
- #endif // !ONESHOT_TAP_TOGGLE
- #ifndef ONESHOT_TIMEOUT
- # define ONESHOT_TIMEOUT 3000
- #endif // !ONESHOT_TIMEOUT
- #if defined(PER_KEY_TAPPING)
- # define IGNORE_MOD_TAP_INTERRUPT_PER_KEY
- # define PERMISSIVE_HOLD_PER_KEY
- # define TAPPING_FORCE_HOLD_PER_KEY
- # define HOLD_ON_OTHER_KEY
- # define RETRO_TAPPING_PER_KEY
- # define HOLD_ON_OTHER_KEY_PRESS_PER_KEY
- # define TAPPING_TERM_PER_KEY
- #else
- # define IGNORE_MOD_TAP_INTERRUPT
- # undef PERMISSIVE_HOLD
- #endif
- #ifndef TAPPING_TOGGLE
- # define TAPPING_TOGGLE 1
- #endif
- #define TAP_CODE_DELAY 5
- /* Disable unused and unneeded features to reduce on firmware size */
- #ifdef LOCKING_SUPPORT_ENABLE
- # undef LOCKING_SUPPORT_ENABLE
- #endif
- #ifdef LOCKING_RESYNC_ENABLE
- # undef LOCKING_RESYNC_ENABLE
- #endif
- #ifdef CONVERT_TO_PROTON_C
- // pins that are available but not present on Pro Micro
- # define A3 PAL_LINE(GPIOA, 3)
- # define A4 PAL_LINE(GPIOA, 4)
- # define A5 PAL_LINE(GPIOA, 5)
- # define A6 PAL_LINE(GPIOA, 6)
- # define A7 PAL_LINE(GPIOA, 7)
- # define A8 PAL_LINE(GPIOA, 8)
- # define A13 PAL_LINE(GPIOA, 13)
- # define A14 PAL_LINE(GPIOA, 14)
- # define A15 PAL_LINE(GPIOA, 15)
- # define B10 PAL_LINE(GPIOB, 10)
- # define B11 PAL_LINE(GPIOB, 11)
- # define B12 PAL_LINE(GPIOB, 12)
- # define C13 PAL_LINE(GPIOC, 13)
- # define C14 PAL_LINE(GPIOC, 14)
- # define C15 PAL_LINE(GPIOC, 15)
- #endif
- #define ENABLE_COMPILE_KEYCODE
- #define BOTH_SHIFTS_TURNS_ON_CAPS_WORD
|