mirror of
https://github.com/jmwtsn/qmk_firmware.git
synced 2026-06-03 19:53:31 -03:00
28 lines
509 B
C
28 lines
509 B
C
// Copyright 2025 QMK
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include_next <mcuconf.h>
|
|
|
|
#undef STM32_SERIAL_USE_USART1
|
|
#define STM32_SERIAL_USE_USART1 TRUE
|
|
|
|
#undef STM32_PWM_USE_TIM3
|
|
#define STM32_PWM_USE_TIM3 TRUE
|
|
|
|
#undef STM32_PLLM_VALUE
|
|
#define STM32_PLLM_VALUE 16
|
|
|
|
#undef STM32_PLLN_VALUE
|
|
#define STM32_PLLN_VALUE 192
|
|
|
|
#undef STM32_PLLQ_VALUE
|
|
#define STM32_PLLQ_VALUE 4
|
|
|
|
#undef STM32_PPRE1
|
|
#define STM32_PPRE1 STM32_PPRE1_DIV4
|
|
|
|
#undef STM32_PPRE2
|
|
#define STM32_PPRE2 STM32_PPRE2_DIV2
|