#[repr(transparent)]pub struct Cr1(pub u32);
Expand description
Control register 1, SSPCR1 on page 3-5
Tuple Fields§
§0: u32
Implementations§
source§impl Cr1
impl Cr1
sourcepub const fn lbm(&self) -> bool
pub const fn lbm(&self) -> bool
Loop back mode: 0 Normal serial port operation enabled. 1 Output of transmit serial shifter is connected to input of receive serial shifter internally.
sourcepub fn set_lbm(&mut self, val: bool)
pub fn set_lbm(&mut self, val: bool)
Loop back mode: 0 Normal serial port operation enabled. 1 Output of transmit serial shifter is connected to input of receive serial shifter internally.
sourcepub const fn sse(&self) -> bool
pub const fn sse(&self) -> bool
Synchronous serial port enable: 0 SSP operation disabled. 1 SSP operation enabled.
sourcepub fn set_sse(&mut self, val: bool)
pub fn set_sse(&mut self, val: bool)
Synchronous serial port enable: 0 SSP operation disabled. 1 SSP operation enabled.
sourcepub const fn ms(&self) -> bool
pub const fn ms(&self) -> bool
Master or slave mode select. This bit can be modified only when the PrimeCell SSP is disabled, SSE=0: 0 Device configured as master, default. 1 Device configured as slave.
sourcepub fn set_ms(&mut self, val: bool)
pub fn set_ms(&mut self, val: bool)
Master or slave mode select. This bit can be modified only when the PrimeCell SSP is disabled, SSE=0: 0 Device configured as master, default. 1 Device configured as slave.
sourcepub const fn sod(&self) -> bool
pub const fn sod(&self) -> bool
Slave-mode output disable. This bit is relevant only in the slave mode, MS=1. In multiple-slave systems, it is possible for an PrimeCell SSP master to broadcast a message to all slaves in the system while ensuring that only one slave drives data onto its serial output line. In such systems the RXD lines from multiple slaves could be tied together. To operate in such systems, the SOD bit can be set if the PrimeCell SSP slave is not supposed to drive the SSPTXD line: 0 SSP can drive the SSPTXD output in slave mode. 1 SSP must not drive the SSPTXD output in slave mode.
sourcepub fn set_sod(&mut self, val: bool)
pub fn set_sod(&mut self, val: bool)
Slave-mode output disable. This bit is relevant only in the slave mode, MS=1. In multiple-slave systems, it is possible for an PrimeCell SSP master to broadcast a message to all slaves in the system while ensuring that only one slave drives data onto its serial output line. In such systems the RXD lines from multiple slaves could be tied together. To operate in such systems, the SOD bit can be set if the PrimeCell SSP slave is not supposed to drive the SSPTXD line: 0 SSP can drive the SSPTXD output in slave mode. 1 SSP must not drive the SSPTXD output in slave mode.
Trait Implementations§
impl Copy for Cr1
impl Eq for Cr1
impl StructuralPartialEq for Cr1
Auto Trait Implementations§
impl Freeze for Cr1
impl RefUnwindSafe for Cr1
impl Send for Cr1
impl Sync for Cr1
impl Unpin for Cr1
impl UnwindSafe for Cr1
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)