diff options
author | Álvaro A. Volpato <alvaro.augusto.volpato@gmail.com> | 2022-07-23 21:09:52 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-23 17:09:52 -0700 |
commit | 98c1f7a9ef569802ab3606eac098e388109f4025 (patch) | |
tree | 77dea98215e6ecf2ce765f45069f23303f9af1e2 /keyboards/acheron/apollo/88htsc/rules.mk | |
parent | c3df1775bc9a14b5a43c03d000f6765c119b44ee (diff) | |
download | qmk_firmware-98c1f7a9ef569802ab3606eac098e388109f4025.tar.gz qmk_firmware-98c1f7a9ef569802ab3606eac098e388109f4025.zip |
[Keyboard] Apollo87H PCB support (#16817)
* Initial Apollo87H support
* Define RGB animations and default animation
* Add proper per-key RGB support
* Adjust LED positions
* Separate delta-gamma
* Fine-tune LED positions
* fix up GAMMA revision
* fix up tabs indentation to spaces indentation
* Fixed positioning and CS-SW defs for some LEDs
* Fix INS RGB position
* Fine-tune LED positions, fix default RGB
* Update readme's
* Rename LAYOUT_87H to lowercase 87h
* Formatting gamma's rules.mk
* Formatting delta's rules.mk
* Use smaller readme image
* Use smaller README image
* First support for 87H-T-SC and 88H-T-SC
* Update README
* Fix layout naming
* Remove
* Remove EEPROM definitions, fix missing RGB LED mod/alpha definer
* Add suggestions from noroadsleft
Diffstat (limited to 'keyboards/acheron/apollo/88htsc/rules.mk')
-rw-r--r-- | keyboards/acheron/apollo/88htsc/rules.mk | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/keyboards/acheron/apollo/88htsc/rules.mk b/keyboards/acheron/apollo/88htsc/rules.mk new file mode 100644 index 0000000000..1711dd486d --- /dev/null +++ b/keyboards/acheron/apollo/88htsc/rules.mk @@ -0,0 +1,24 @@ +# MCU name +MCU = STM32F401 + +# 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 = no # Enable N-Key Rollover +BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality +RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow +AUDIO_ENABLE = no # Audio output +RGB_MATRIX_ENABLE = yes +RGB_MATRIX_DRIVER = WS2812 +EEPROM_DRIVER = i2c + +# Enter lower-power sleep mode when on the ChibiOS idle thread +OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE -DDEBUG_EEPROM_OUTPUT=TRUE |