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
13
14
15
//! Demonstrates a simple panic handler.
//!
//! This example does not write a panic message, nor does it set up
//! logging. You should only observe an blinking LED in an SOS pattern.

#![no_std]
#![no_main]

use teensy4_bsp as bsp;
use teensy4_panic as _;

#[bsp::rt::entry]
fn main() -> ! {
    panic!();
}