#cortex-m #arm #teensy-4

no-std teensy4-bsp

Rust-based BSP for the Teensy 4. teensy4-rs项目的一部分

16个版本

0.5.0 2024年5月27日
0.4.7 2024年1月27日
0.4.6 2023年12月26日
0.4.5 2023年11月11日
0.1.0 2020年10月16日

嵌入式开发中排名 82

每月下载 45
5 crate 中使用

MIT/Apache

98KB
1K SLoC

teensy4-rs

Teensy 4上的Rust开发crate集合。支持以下板卡

  • Teensy 4.0
  • Teensy 4.1
  • Teensy MicroMod

Code Checks crates.io docs.rs

API文档 (master)

依赖

  • 安装Rust。使用rustup安装Rust。我们支持最新的稳定Rust工具链。

  • thumbv7em-none-eabihf Rust目标,可以使用rustup安装

    rustup target add thumbv7em-none-eabihf
    
  • 一个强大的objcopy,用于将Rust二进制文件转换为hex文件。项目的文档和工具使用由cargo-binutils提供的LLVM objcopy。如果您想精确遵循此文档,请安装cargo-binutils

  • 要将程序下载到您的Teensy 4,您需要一个teensy_loader_cli的构建,或者Teensy Loader应用程序。后者可在Teensyduino插件中使用。

入门

使用我们的cargo-generate模板,teensy4-rs-template,基于这些库启动您自己的teensy4-rs项目

cargo install cargo-generate
cargo generate --git https://github.com/mciantyre/teensy4-rs-template --name hello-world
cd hello-world
cargo objcopy --release -- -O ihex hello-world.hex

hello-world.hex下载到您的Teensy 4!

查看Rust文档以获取API信息。特别是,研究imxrt-hal API,因为BSP转发了许多HAL的接口

cargo doc --open

如果您想测试系统,可以尝试此项目的examples目录中的各种示例

贡献

我们欢迎支持!一种很好的贡献方式是开始使用crates来开发Teensy 4应用程序。提交一个问题来帮助我们识别错误、功能请求或文档空白。请参阅CONTRIBUTING.md了解您请求的最佳问题跟踪器。

如果您想直接为teensy4-rs项目做出贡献,请阅读CONTRIBUTING.md中的开发指南。

致谢和参考文献

  • Teensy 4非常出色,这要归功于PJRC和朋友们的不懈努力。我们可以在Arduino插件中找到使用的Teensy代码这里。代码极大地影响了这个库。
  • Rust Cortex M团队,特别是cortex-m-rt crate。

许可证

根据您的选择,许可如下:

依赖

~27MB
~731K SLoC