mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-27 03:21:15 +00:00
* Refactor bastardkb/charybdis/3x5 - Migrate various configuration to data-driven - Use short SPDX license headers - Remove configuration that trends towards user-specific (CRC Table) - Migrate common configuration upwards - Migrate keymap to JSON - Remove likely unneeded v1 revision per #23638 - Remove revisions splinky_2, splinky_3, and stemcell where a converter should be used - Rename v2/elitec -> elitec. Specifically named elitec, as this board requires pin compatibility with an Elite-C (bottom 5 pins) * Aliases
26 lines
595 B
C
26 lines
595 B
C
// Copyright 2020 Nick Brassel (tzarc)
|
|
// Copyright 2021 Stefan Kerkmann (@KarlK90)
|
|
// Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#pragma once
|
|
|
|
#include_next <mcuconf.h>
|
|
|
|
#undef STM32_PWM_USE_TIM2
|
|
#define STM32_PWM_USE_TIM2 TRUE
|
|
|
|
#undef STM32_PWM_USE_TIM3
|
|
#define STM32_PWM_USE_TIM3 TRUE
|
|
|
|
#undef STM32_SPI_USE_SPI1
|
|
#define STM32_SPI_USE_SPI1 TRUE
|
|
|
|
#undef STM32_SERIAL_USE_USART1
|
|
#define STM32_SERIAL_USE_USART1 TRUE
|
|
|
|
#undef STM32_GPT_USE_TIM4
|
|
#define STM32_GPT_USE_TIM4 TRUE
|
|
|
|
#undef STM32_ST_USE_TIMER
|
|
#define STM32_ST_USE_TIMER 5
|