logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

mcuconf.h (724B)


  1. // Copyright 2018-2022 Nick Brassel (@tzarc)
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include_next <mcuconf.h>
  5. // Used for audio
  6. #undef STM32_PWM_USE_TIM1
  7. #undef STM32_GPT_USE_TIM6
  8. #undef STM32_GPT_USE_TIM7
  9. #undef STM32_GPT_USE_TIM8
  10. #define STM32_PWM_USE_TIM1 TRUE
  11. #define STM32_GPT_USE_TIM6 TRUE
  12. #define STM32_GPT_USE_TIM7 TRUE
  13. #define STM32_GPT_USE_TIM8 TRUE
  14. // Used for backlight
  15. #undef STM32_PWM_USE_TIM17
  16. #define STM32_PWM_USE_TIM17 TRUE
  17. // Used for SK6812 chain
  18. #undef STM32_PWM_USE_TIM20
  19. #define STM32_PWM_USE_TIM20 TRUE
  20. // Used for split comms
  21. #undef STM32_SERIAL_USE_USART3
  22. #define STM32_SERIAL_USE_USART3 TRUE
  23. // Used for EEPROM/LCD
  24. #undef STM32_SPI_USE_SPI3
  25. #define STM32_SPI_USE_SPI3 TRUE