logo

qmk_firmware

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

mcuconf.h (2215B)


  1. /* Copyright 2020 Nick Brassel (tzarc)
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 3 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  15. */
  16. #pragma once
  17. #include_next <mcuconf.h>
  18. #undef STM32_LSE_ENABLED
  19. #define STM32_LSE_ENABLED TRUE
  20. #undef STM32_PLLM_VALUE
  21. #define STM32_PLLM_VALUE 8
  22. #undef STM32_RTCSEL
  23. #define STM32_RTCSEL STM32_RTCSEL_LSE
  24. #undef STM32_SERIAL_USE_USART1
  25. #define STM32_SERIAL_USE_USART1 TRUE
  26. #if HAL_USE_WDG == TRUE
  27. # undef STM32_WDG_USE_IWDG
  28. # define STM32_WDG_USE_IWDG TRUE
  29. #endif
  30. #if HAL_USE_I2C == TRUE
  31. # undef STM32_I2C_USE_I2C1
  32. # define STM32_I2C_USE_I2C1 TRUE
  33. # undef STM32_I2C_BUSY_TIMEOUT
  34. # define STM32_I2C_BUSY_TIMEOUT 10
  35. # undef STM32_I2C_I2C1_RX_DMA_STREAM
  36. # define STM32_I2C_I2C1_RX_DMA_STREAM STM32_DMA_STREAM_ID(1, 0)
  37. # undef STM32_I2C_I2C1_TX_DMA_STREAM
  38. # define STM32_I2C_I2C1_TX_DMA_STREAM STM32_DMA_STREAM_ID(1, 7)
  39. #endif // HAL_USE_I2C
  40. #ifdef WS2812_PWM
  41. # undef STM32_PWM_USE_TIM3
  42. # define STM32_PWM_USE_TIM3 TRUE
  43. #endif // WS2812_PWM
  44. #ifdef BACKLIGHT_PWM
  45. # undef STM32_PWM_USE_TIM8
  46. # define STM32_PWM_USE_TIM8 TRUE
  47. #endif
  48. #if HAL_USE_SPI == TRUE
  49. # undef STM32_SPI_USE_SPI1
  50. # define STM32_SPI_USE_SPI1 TRUE
  51. #endif
  52. #ifdef AUDIO_DRIVER_DAC
  53. # undef STM32_DAC_USE_DAC1_CH1
  54. # define STM32_DAC_USE_DAC1_CH1 TRUE
  55. # undef STM32_DAC_USE_DAC1_CH2
  56. # define STM32_DAC_USE_DAC1_CH2 TRUE
  57. # undef STM32_GPT_USE_TIM6
  58. # define STM32_GPT_USE_TIM6 TRUE
  59. #endif // AUDIO_DRIVER_DAC
  60. #ifdef USE_USB_OTG_HS_PORT
  61. # undef STM32_USB_USE_OTG1
  62. # define STM32_USB_USE_OTG1 FALSE
  63. # undef STM32_USB_USE_OTG2
  64. # define STM32_USB_USE_OTG2 TRUE
  65. #endif