diff options
| author | Dario Nieuwenhuis <[email protected]> | 2025-12-19 12:41:25 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-12-19 12:41:25 +0100 |
| commit | 14efaf71d76ad0af569522ee0c4082d473fdede7 (patch) | |
| tree | ee9f4352e70815e97e424bb534c1c096242b9af0 /embassy-rp/src/pio_programs/uart.rs | |
| parent | 3214021ed5ae17b96ac006c0f460e222502e411d (diff) | |
| parent | 62ed44f99af9e33d689c8308149f8f992176895f (diff) | |
Merge pull request #4745 from embassy-rs/io07
Update to embedded-io 0.7
Diffstat (limited to 'embassy-rp/src/pio_programs/uart.rs')
| -rw-r--r-- | embassy-rp/src/pio_programs/uart.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/embassy-rp/src/pio_programs/uart.rs b/embassy-rp/src/pio_programs/uart.rs index d59596dd1..a16d89a75 100644 --- a/embassy-rp/src/pio_programs/uart.rs +++ b/embassy-rp/src/pio_programs/uart.rs | |||
| @@ -90,6 +90,10 @@ impl<PIO: Instance, const SM: usize> Write for PioUartTx<'_, PIO, SM> { | |||
| 90 | } | 90 | } |
| 91 | Ok(buf.len()) | 91 | Ok(buf.len()) |
| 92 | } | 92 | } |
| 93 | |||
| 94 | async fn flush(&mut self) -> Result<(), Infallible> { | ||
| 95 | Ok(()) | ||
| 96 | } | ||
| 93 | } | 97 | } |
| 94 | 98 | ||
| 95 | /// This struct represents a Uart Rx program loaded into pio instruction memory. | 99 | /// This struct represents a Uart Rx program loaded into pio instruction memory. |
