teensy4-fcb

Crates.ioteensy4-fcb
lib.rsteensy4-fcb
version0.4.0
sourcesrc
created_at2019-12-31 20:23:08.725157
updated_at2023-01-06 16:21:53.478025
descriptionFlexSPI Configuration Block (FCB) for the Teensy 4. Part of the teensy4-rs project.
homepage
repositoryhttps://github.com/mciantyre/teensy4-rs
max_upload_size
id193953
size19,294
Ian McIntyre (mciantyre)

documentation

README

teensy4-fcb

FlexSPI Configuration Block (FCB) for the Teensy 4

See the imxrt-boot-gen crate to learn how this was generated.

Usage

Add teensy4-fcb to your dependencies:

[dependencies]
teensy4-fcb = "0.4"

Properly place the FCB in your program's memory. See the FLEXSPI_CONFIGURATION_BLOCK declaration below, or the imxrt-boot-gen documentation, for more information on how you could refer to the FCB.

Make sure that you reference this crate somewhere in your program! Otherwise, it might get removed from the output. Either use

use teensy4_fcb as _;

or

extern crate teensy4_fcb;

to reference the FCB in either your library or binary.

License: MIT OR Apache-2.0

Commit count: 593

cargo fmt