diff options
author | Álvaro A. Volpato <alvaro.augusto.volpato@gmail.com> | 2022-08-10 22:43:52 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-10 18:43:52 -0700 |
commit | 90c4350af778951c9da2678842cd21734f8ec1d3 (patch) | |
tree | 7d17e0583d800748a94d17d98876eb8951720c44 /keyboards/geonworks/frogmini/fms/rules.mk | |
parent | 1038ade342606f155b2ed0bee6542a24580fe6b9 (diff) |
[Keyboard] Initial FM-S and FM-H support (#17765)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/geonworks/frogmini/fms/rules.mk')
-rw-r--r-- | keyboards/geonworks/frogmini/fms/rules.mk | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/keyboards/geonworks/frogmini/fms/rules.mk b/keyboards/geonworks/frogmini/fms/rules.mk new file mode 100644 index 0000000000..b58f583fea --- /dev/null +++ b/keyboards/geonworks/frogmini/fms/rules.mk @@ -0,0 +1,27 @@ +MCU = STM32F401 +BOARD = GENERIC_STM32_F401XC + +# Bootloader selection +BOOTLOADER = stm32-dfu + +# Build Options +# change yes to no to disable +# +BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite +MOUSEKEY_ENABLE = no # Mouse keys +EXTRAKEY_ENABLE = yes # Audio control and System control +CONSOLE_ENABLE = no # Console for debug +COMMAND_ENABLE = no # Commands for debug and configuration +NKRO_ENABLE = yes # Enable N-Key Rollover +RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow +AUDIO_ENABLE = no # Audio output +LTO_ENABLE = no +ENCODER_ENABLE = no + +BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality +BACKLIGHT_DRIVER = pwm + +EEPROM_DRIVER = i2c + +# Enter lower-power sleep mode when on the ChibiOS idle thread +OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE |