Struct stm32_fmc::SdramConfiguration[][src]

pub struct SdramConfiguration {
    pub column_bits: u8,
    pub row_bits: u8,
    pub memory_data_width: u8,
    pub internal_banks: u8,
    pub cas_latency: u8,
    pub write_protection: bool,
    pub read_burst: bool,
    pub read_pipe_delay_cycles: u8,
}

FMC SDRAM Configuration Structure definition

Fields

column_bits: u8

Number of bits of column address

row_bits: u8

Number of bits of column address

memory_data_width: u8

Memory device width

internal_banks: u8

Number of the device’s internal banks

cas_latency: u8

SDRAM CAS latency in number of memory clock cycles

write_protection: bool

Enables the SDRAM device to be accessed in write mode

read_burst: bool

This bit enable the SDRAM controller to anticipate the next read

read_pipe_delay_cycles: u8

Delay in system clock cycles on read data path

Trait Implementations

impl Clone for SdramConfiguration[src]

impl Copy for SdramConfiguration[src]

impl Debug for SdramConfiguration[src]

impl PartialEq<SdramConfiguration> for SdramConfiguration[src]

impl StructuralPartialEq for SdramConfiguration[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.