mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-01-10 11:39:32 +00:00
17 lines
443 B
C
17 lines
443 B
C
|
// Copyright 2024 QMK
|
||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#define SERIAL_USART_TX_PIN GP12
|
||
|
#define USB_VBUS_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
|