mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-25 10:31:13 +00:00
19 lines
367 B
C
19 lines
367 B
C
// Copyright 2025 Stefan Kerkmann (@karlk90)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include_next <mcuconf.h>
|
|
|
|
#undef STM32_ADC_USE_ADC1
|
|
#define STM32_ADC_USE_ADC1 TRUE
|
|
|
|
#undef STM32_PWM_USE_TIM3
|
|
#define STM32_PWM_USE_TIM3 TRUE
|
|
|
|
#undef STM32_I2C_USE_I2C1
|
|
#define STM32_I2C_USE_I2C1 TRUE
|
|
|
|
#undef STM32_SPI_USE_SPI2
|
|
#define STM32_SPI_USE_SPI2 TRUE
|