#teensy-4 #arm #cortex-m

no-std teensy4-fcb

FlexSPI Configuration Block (FCB) for the Teensy 4. Part of the teensy4-rs project

4 releases (breaking)

0.4.0 Jan 6, 2023
0.3.0 Jan 9, 2021
0.2.0 Oct 16, 2020
0.1.0 Dec 31, 2019

#6 in #teensy-4

Download history 60/week @ 2023-12-07 55/week @ 2023-12-14 78/week @ 2023-12-21 37/week @ 2023-12-28 69/week @ 2024-01-04 112/week @ 2024-01-11 56/week @ 2024-01-18 57/week @ 2024-01-25 24/week @ 2024-02-01 39/week @ 2024-02-08 77/week @ 2024-02-15 125/week @ 2024-02-22 97/week @ 2024-02-29 110/week @ 2024-03-07 97/week @ 2024-03-14 64/week @ 2024-03-21

395 downloads per month
Used in 6 crates (via teensy4-bsp)

MIT/Apache

7KB
64 lines

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


lib.rs:

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.

Dependencies

~45KB