diff options
| author | Dario Nieuwenhuis <[email protected]> | 2025-04-06 23:00:35 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-06 23:00:35 +0000 |
| commit | c7c32739fe8f70b66a2f3ce886d7684419fe4713 (patch) | |
| tree | 262fe52517332e6a22ea127eb68e54ef4377c828 | |
| parent | 717fbc1cd9a038d6601721a6e84f58be264ee624 (diff) | |
| parent | c6e16c9e4e64aefff5d40935587433f4e9718fb5 (diff) | |
Merge pull request #4055 from embassy-rs/uart-fifo-2
embassy-rp: uart: Increase RX FIFO watermark
| -rw-r--r-- | embassy-rp/src/uart/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-rp/src/uart/mod.rs b/embassy-rp/src/uart/mod.rs index 90c7655be..7ce074a3f 100644 --- a/embassy-rp/src/uart/mod.rs +++ b/embassy-rp/src/uart/mod.rs | |||
| @@ -913,7 +913,7 @@ impl<'d, T: Instance + 'd, M: Mode> Uart<'d, T, M> { | |||
| 913 | }); | 913 | }); |
| 914 | 914 | ||
| 915 | r.uartifls().write(|w| { | 915 | r.uartifls().write(|w| { |
| 916 | w.set_rxiflsel(0b000); | 916 | w.set_rxiflsel(0b100); |
| 917 | w.set_txiflsel(0b000); | 917 | w.set_txiflsel(0b000); |
| 918 | }); | 918 | }); |
| 919 | 919 | ||
