Pins

Trait Pins 

Source
pub trait Pins<WORD: Word>: Sealed {
    type Lcds: Conjure;
}
Expand description

A set of pins that can be used with the FSMC

This trait is implemented for the LcdPins struct that contains 16 data pins, 1 through 4 address pins, 1 through 4 chip select / bank enable pins, an output enable pin, and a write enable pin.

Required Associated Types§

Source

type Lcds: Conjure

One, two, three, or four Lcd<_> objects associated with the sub-bank(s) that the chip select pin pin(s) control

Implementors§

Source§

impl<D, AD, NE, WORD> Pins<WORD> for LcdPins<D, AD, NE, WORD>
where D: DataPins<WORD>, AD: AddressPins, NE: ChipSelectPins, WORD: Word,

Source§

type Lcds = <NE as ChipSelectPins>::Lcds<WORD>