mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-11-29 04:06:59 +06:00
373364afd1
* Initial commit of Quefrency Rev. 6 * Use more memory for storing VIA layout options * Add missing underglow LED * Set bootmagic keys for each half, split transport matrix for RGB, update pinout for right half * Enable encoders * Add/update license headers * Remove fudge thing * Remove EEPROM leveling specification now that is the default * Fix bootmagic position for right half
15 lines
344 B
C
15 lines
344 B
C
// Copyright 2024 Danny Nguyen (@nooges)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include_next <mcuconf.h>
|
|
|
|
/* enable USART3, used for split comms */
|
|
#undef STM32_SERIAL_USE_USART3
|
|
#define STM32_SERIAL_USE_USART3 TRUE
|
|
|
|
/* enable TIM3, used for RGB LED PWM driver */
|
|
#undef STM32_PWM_USE_TIM3
|
|
#define STM32_PWM_USE_TIM3 TRUE
|