Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adding UART TX GP16
  • Loading branch information
jhordiesluminus committed Sep 20, 2025
commit fe8763c4d9c84df78b0f561aea5320ef79e4b916
7 changes: 7 additions & 0 deletions src/boards/include/boards/raspberry_pi_pi500_rp2040.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ pico_board_cmake_set_default(PICO_FLASH_SIZE_BYTES, (2 * 1024 * 1024))
#define PI500_RP2040_POWER_KEY_COL_PIN 20 // Also matrix col 11
#define PI500_RP2040_POWER_KEY_ROW_PIN 6 // Also matrix row 6

// --- UART ---
#ifndef PICO_DEFAULT_UART
#define PICO_DEFAULT_UART 0
#endif
#ifndef PICO_DEFAULT_UART_TX_PIN
#define PICO_DEFAULT_UART_TX_PIN 16
#endif

// --- KEYBOARD MATRIX PINS ---
// Matrix row pins (8 pins)
Expand Down
Loading