tinygo.org/x/drivers@v0.27.1-0.20240509133757-7dbca2a54349/uart.go (about)

     1  package drivers
     2  
     3  import "io"
     4  
     5  // UART represents a UART connection. It is implemented by the machine.UART
     6  // type.
     7  type UART interface {
     8  	io.Reader
     9  	io.Writer
    10  
    11  	Buffered() int
    12  }