mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-12-03 08:25:11 +00:00
c9cd92ece3
* [Keyboard] Corne rev4 * Remove unneeded update interval and moved split pin to dd * Cleanup config and errors * Move bootmagic config to dd * Re-add existing configs * Additional config fixes * shove off via keymap
18 lines
483 B
C
Executable File
18 lines
483 B
C
Executable File
// Copyright 2024 QMK
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#define SERIAL_USART_FULL_DUPLEX
|
|
#define SERIAL_USART_TX_PIN GP12
|
|
#define SERIAL_USART_RX_PIN GP13
|
|
|
|
#define I2C_DRIVER I2CD1
|
|
#define I2C1_SDA_PIN GP6
|
|
#define I2C1_SCL_PIN GP7
|
|
|
|
/* RP2040- and hardware-specific config */
|
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET // Activates the double-tap behavior
|
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 500U
|
|
#define PICO_XOSC_STARTUP_DELAY_MULTIPLIER 64
|