mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-26 19:11:13 +00:00
* Refactor bastardkb/scylla - Update keyboard aliases accordingly - Migrate keymap to JSON and better represent physical layout - scylla/blackpill - Migrate common configuration to keyboard level - Remove unnecessary or user-specific configuration - Migrate some configuration to data-driven - Use short SPDX license headers - Remove unnecessary rules.mk file - Formatting pass on keyboard.json - scylla/v1 - Remove likely unneeded version, per qmk#23814 - scylla/v2 - Remove splinky_2 revision, per qmk#23814 - Remove splinky_3, stemcell revisions; converter feature should be used here - Rename scylla/v2/elitec -> scylla/promicro, as a converter can be used for any pin-compatible microcontrollers * Small keymap fix
23 lines
536 B
C
23 lines
536 B
C
// Copyright 2020 Nick Brassel (tzarc)
|
|
// Copyright 2021 Stefan Kerkmann (@KarlK90)
|
|
// Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#pragma once
|
|
|
|
#include_next <mcuconf.h>
|
|
|
|
#undef STM32_SPI_USE_SPI1
|
|
#define STM32_SPI_USE_SPI1 TRUE
|
|
|
|
#undef STM32_PWM_USE_TIM2
|
|
#define STM32_PWM_USE_TIM2 TRUE
|
|
|
|
#undef STM32_SERIAL_USE_USART1
|
|
#define STM32_SERIAL_USE_USART1 TRUE
|
|
|
|
#undef STM32_GPT_USE_TIM3
|
|
#define STM32_GPT_USE_TIM3 TRUE
|
|
|
|
#undef STM32_ST_USE_TIMER
|
|
#define STM32_ST_USE_TIMER 5
|