FR

Type Alias FR 

Source
pub type FR = Reg<u32, _FR>;
Expand description

UART flag The FR register is the flag register. After reset, the TXFF, RXFF, and BUSY bits are 0, and TXFE and RXFE bits are 1. The CTS bit indicate the modem flow control. Note that the modem bits are only implemented on UART1 and are tied inactive on UART0. Due to this difference, the reset state of the UART0 FR register is 0x90, while UART1 FR register reset state 0x197 .

This register you can read, reset, write, write_with_zero, modify. See API.

For information about avaliable fields see fr module

Aliased Type§

pub struct FR { /* private fields */ }

Trait Implementations§

Source§

impl ResetValue for FR

Register FR reset()’s with value 0

Source§

type Type = u32

Register size
Source§

fn reset_value() -> Self::Type

Reset value of the register
Source§

impl Readable for FR

read() method returns fr::R reader structure

Source§

impl Writable for FR

write(|w| ..) method takes fr::W writer structure