diff --git a/CHANGELOG.md b/CHANGELOG.md index 86e7f8e7..fbc1c5ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Added + - Serial flow control enable - `i2c_scanner` example [#758] - Enable `sdio` for stm32f446 - port LTDC implementation and example from stm32f7xx-hal [#731] diff --git a/src/serial/uart_impls.rs b/src/serial/uart_impls.rs index c7269100..38458949 100644 --- a/src/serial/uart_impls.rs +++ b/src/serial/uart_impls.rs @@ -10,7 +10,10 @@ use crate::dma::{ traits::{DMASet, PeriAddress}, MemoryToPeripheral, PeripheralToMemory, }; -use crate::gpio::{alt::SerialAsync as CommonPins, NoPin, PushPull}; +use crate::gpio::{ + alt::{SerialAsync as CommonPins, SerialFlowControl}, + NoPin, PushPull, +}; use crate::rcc::{self, Clocks}; #[cfg(feature = "uart4")] @@ -262,6 +265,20 @@ macro_rules! uartCommon { }; } +pub trait RBFlowControlImpl { + fn enable_rts(&self, state: bool); + fn enable_cts(&self, state: bool); +} + +impl RBFlowControlImpl for RegisterBlockUsart { + fn enable_rts(&self, state: bool) { + self.cr3().modify(|_, w| w.rtse().bit(state)); + } + fn enable_cts(&self, state: bool) { + self.cr3().modify(|_, w| w.ctse().bit(state)); + } +} + impl RegisterBlockImpl for RegisterBlockUsart { fn new, WORD>( uart: UART, @@ -402,6 +419,23 @@ where { uartCommon! {} } +#[cfg(feature = "uart4")] +#[cfg(not(any( + feature = "gpio-f413", + feature = "gpio-f417", + feature = "gpio-f427", + feature = "gpio-f446", + feature = "gpio-f469" +)))] +impl RBFlowControlImpl for RegisterBlockUart { + fn enable_rts(&self, state: bool) { + self.cr3().modify(|_, w| w.rtse().bit(state)); + } + fn enable_cts(&self, state: bool) { + self.cr3().modify(|_, w| w.ctse().bit(state)); + } +} + #[cfg(feature = "uart4")] impl RegisterBlockImpl for RegisterBlockUart { fn new, WORD>( @@ -509,6 +543,34 @@ where { uartCommon! {} } +impl Serial +where + UART::RegisterBlock: RBFlowControlImpl, +{ + pub fn with_rts(self, rts: impl Into) -> Self { + self.rx.usart.enable_rts(true); + let _rts = rts.into(); + self + } + pub fn with_cts(self, cts: impl Into) -> Self { + self.tx.usart.enable_cts(true); + let _cts = cts.into(); + self + } + pub fn enable_request_to_send(&mut self) { + self.rx.usart.enable_rts(true); + } + pub fn disable_request_to_send(&mut self) { + self.rx.usart.enable_rts(false); + } + pub fn enable_clear_to_send(&mut self) { + self.tx.usart.enable_cts(true); + } + pub fn disable_clear_to_send(&mut self) { + self.tx.usart.enable_cts(false); + } +} + impl RxISR for Serial where Rx: RxISR,