/* Copyright 2025 mizma (@mizma) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #pragma once // Make it easier to enter the bootloader #define RP2040_BOOTLOADER_DOUBLE_TAP_RESET #define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 1000U // UART1, communication between the two halves #define SERIAL_USART_FULL_DUPLEX // Enable full duplex operation mode #define SERIAL_USART_TX_PIN GP17 // USART TX pin #define SERIAL_USART_RX_PIN GP18 // USART RX pin #define SERIAL_PIO_USE_PIO1 // Use PIO1 as PIO0 is used for WS2812 driver