logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

config.h (838B)


  1. // Copyright 2025 splitkb.com (support@splitkb.com)
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. // Make it easier to enter the bootloader
  5. #define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
  6. #define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 1000U
  7. // UART1, communication between the two halves
  8. #define SERIAL_USART_FULL_DUPLEX // Enable full duplex operation mode.
  9. #define SERIAL_USART_TX_PIN GP28 // USART TX pin
  10. #define SERIAL_USART_RX_PIN GP29 // USART RX pin
  11. #define SERIAL_PIO_USE_PIO1 // Use PIO1 as PIO0 is used for WS2812 driver
  12. // VBUS detection
  13. #define USB_VBUS_PIN GP1
  14. //// VIK
  15. // GPIO1 = GP27
  16. // GPIO2 = GP26
  17. // CS = GP13
  18. #define I2C_DRIVER I2C0
  19. #define I2C1_SDA_PIN GP16
  20. #define I2C1_SCL_PIN GP17
  21. #define SPI_DRIVER SPID1
  22. #define SPI_SCK_PIN GP14
  23. #define SPI_MOSI_PIN GP15
  24. #define SPI_MISO_PIN GP12