teensy4-bsp 0.4.0

Rust-based BSP for the Teensy 4. Part of the teensy4-rs project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# This provides a minimal Docker image that you can use for your
# Teensy 4 development. It should be useful with the teensy4-rs-template.

FROM rust    

RUN rustup target add thumbv7em-none-eabihf && \
    rustup component add llvm-tools-preview && \
    cargo install cargo-binutils

WORKDIR /build

ENTRYPOINT ["cargo objcopy --release -- -O ihex"]