pub struct MemoryMap<const N: usize> {
    pub flash: Memory,
    pub sram: Memory,
    pub peripheral: Memory,
    pub additional: [OptionalMemory; N],
}
Expand description

Memory map.

Fields

flash: Memory

Default internal flash memory.

sram: Memory

Default internal SRAM.

peripheral: Memory

Memory mapped peripheral address range.

additional: [OptionalMemory; N]

Additional memory components such as

  • Tightly coupled memory
  • External RAM
  • External flash

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.