From 8ef4af45d7eb767786f4aeaefab6b11cb9bf6bc1 Mon Sep 17 00:00:00 2001 From: Micah Cowell Date: Tue, 17 Feb 2026 10:46:57 -0800 Subject: [PATCH] export UART0 and pins --- src/machine/board_feather-m0.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/machine/board_feather-m0.go b/src/machine/board_feather-m0.go index f38d8ec88..15ec77d37 100644 --- a/src/machine/board_feather-m0.go +++ b/src/machine/board_feather-m0.go @@ -43,6 +43,15 @@ const ( USBCDC_DP_PIN = PA25 ) +// UART0 pins +const ( + UART0_TX_PIN = D1 + UART0_RX_PIN = D0 +) + +// UART0 on the Feather M0. +var UART0 = &sercomUSART0 + // UART1 pins const ( UART_TX_PIN = D10