UART on the RP2040.
| 9 | |
| 10 | // UART on the RP2040. |
| 11 | type UART struct { |
| 12 | Buffer *RingBuffer |
| 13 | Bus *rp.UART0_Type |
| 14 | Interrupt interrupt.Interrupt |
| 15 | } |
| 16 | |
| 17 | // Configure the UART. |
| 18 | func (uart *UART) Configure(config UARTConfig) error { |
nothing calls this directly
no outgoing calls
no test coverage detected