diff options
| author | diogo464 <[email protected]> | 2026-01-20 14:48:51 +0000 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2026-01-20 14:48:51 +0000 |
| commit | 77c1d2e8739c433fd82e9d61c5e5b216c1f2513c (patch) | |
| tree | 931525f0bf48d6e7dbb86d75e2e954faffbb241e /examples | |
| parent | aa47d88882d9bd6c7753315c8fe1b9b2e9b21fa7 (diff) | |
updated dependencies
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/common/std_async_tcp.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/common/std_async_tcp.rs b/examples/common/std_async_tcp.rs index 10a9fd8..5d20aee 100644 --- a/examples/common/std_async_tcp.rs +++ b/examples/common/std_async_tcp.rs | |||
| @@ -93,6 +93,10 @@ impl embedded_io_async::Write for AsyncTcp { | |||
| 93 | self.write_handle.thread().unpark(); | 93 | self.write_handle.thread().unpark(); |
| 94 | Ok(buf.len()) | 94 | Ok(buf.len()) |
| 95 | } | 95 | } |
| 96 | |||
| 97 | async fn flush(&mut self) -> Result<(), Self::Error> { | ||
| 98 | Ok(()) | ||
| 99 | } | ||
| 96 | } | 100 | } |
| 97 | 101 | ||
| 98 | impl embedded_io_async::Read for AsyncTcp { | 102 | impl embedded_io_async::Read for AsyncTcp { |
