mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-25 02:21:17 +00:00
* Kobold r1 * Apply suggestions from code review Co-authored-by: jack <jack@pngu.org> * `board_init` => `early_hardware_init_post`. --------- Co-authored-by: jack <jack@pngu.org>
13 lines
291 B
C
13 lines
291 B
C
// Copyright 2025 Nick Brassel (@tzarc)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#pragma once
|
|
#include_next <mcuconf.h>
|
|
|
|
// Used for SK6812 chain
|
|
#undef STM32_PWM_USE_TIM17
|
|
#define STM32_PWM_USE_TIM17 TRUE
|
|
|
|
// Used for NOR Flash
|
|
#undef STM32_SPI_USE_SPI1
|
|
#define STM32_SPI_USE_SPI1 TRUE
|