├── .DS_Store ├── .github └── workflows │ └── mdbook.yml ├── .gitignore ├── LICENSE ├── ReadMe.md ├── book-en.toml ├── book-zh.toml ├── chinese_version ├── .DS_Store ├── img │ ├── 20250421152134.png │ ├── 20250421152403.png │ ├── 20250421160423.png │ ├── 20250421160559.png │ ├── 20250421160744.png │ ├── 20250421163617.png │ ├── 20250421163638.png │ ├── 20250421164922.png │ ├── 20250421175609.png │ ├── 20250422172416.png │ ├── 20250422172522.png │ ├── 20250422175546.png │ ├── 20250422175559.png │ ├── 20250422193314.png │ ├── 20250422202222.png │ ├── 20250423145640.png │ ├── 20250423151350.png │ ├── 20250423151555.png │ ├── 20250423151653.png │ ├── 20250423151829.png │ ├── 20250423151926.png │ ├── 20250423152208.png │ ├── 20250423152228.png │ ├── 20250423152641.png │ ├── 20250423153418.png │ ├── 20250423154224.png │ ├── 20250423154245.png │ ├── 20250424090858.png │ ├── 20250424094914.png │ ├── 20250424095057.png │ ├── 20250424095128.png │ ├── 20250424095304.png │ ├── 20250424103210.png │ ├── 20250424105517.png │ ├── 20250424105538.png │ ├── 20250424111752.png │ ├── 20250424111834.png │ ├── 20250424114524.png │ ├── 20250424114550.png │ ├── 20250424114607.png │ ├── 20250424143944.png │ ├── 20250424143951.png │ ├── 20250424145046.png │ ├── 20250424145426.png │ ├── 20250424150011.png │ ├── 20250427142805.png │ ├── 20250427145602.png │ └── 20250427151246.png └── 嵌入式工程师的单片机Rust上手指南.md ├── en ├── SUMMARY.md └── chapter │ ├── async-programming.md │ ├── basic-example.md │ ├── containers-in-embedded.md │ ├── embedded-hal.md │ ├── environment-setup.md │ ├── esp32-rust.md │ ├── img │ ├── 20250421152134.png │ ├── 20250421152403.png │ ├── 20250421160423.png │ ├── 20250421160559.png │ ├── 20250421160744.png │ ├── 20250421163617.png │ ├── 20250421163638.png │ ├── 20250421164922.png │ ├── 20250421175609.png │ ├── 20250422172416.png │ ├── 20250422172522.png │ ├── 20250422175546.png │ ├── 20250422175559.png │ ├── 20250422193314.png │ ├── 20250422202222.png │ ├── 20250423145640.png │ ├── 20250423151350.png │ ├── 20250423151555.png │ ├── 20250423151653.png │ ├── 20250423151829.png │ ├── 20250423151926.png │ ├── 20250423152208.png │ ├── 20250423152228.png │ ├── 20250423152641.png │ ├── 20250423153418.png │ ├── 20250423154224.png │ ├── 20250423154245.png │ ├── 20250424090858.png │ ├── 20250424094914.png │ ├── 20250424095057.png │ ├── 20250424095128.png │ ├── 20250424095304.png │ ├── 20250424103210.png │ ├── 20250424105517.png │ ├── 20250424105538.png │ ├── 20250424111752.png │ ├── 20250424111834.png │ ├── 20250424114524.png │ ├── 20250424114550.png │ ├── 20250424114607.png │ ├── 20250424143944.png │ ├── 20250424143951.png │ ├── 20250424145046.png │ ├── 20250424145426.png │ ├── 20250424150011.png │ ├── 20250427142805.png │ ├── 20250427145602.png │ └── 20250427151246.png │ ├── preface.md │ ├── rust-in-stm32-c.md │ └── type-system.md ├── index.html └── zh ├── SUMMARY.md └── chapter ├── ESP32中的Rust开发.md ├── Embedded-HAL.md ├── Rust嵌入stm32的C工程.md ├── img ├── 20250421152134.png ├── 20250421152403.png ├── 20250421160423.png ├── 20250421160559.png ├── 20250421160744.png ├── 20250421163617.png ├── 20250421163638.png ├── 20250421164922.png ├── 20250421175609.png ├── 20250422172416.png ├── 20250422172522.png ├── 20250422175546.png ├── 20250422175559.png ├── 20250422193314.png ├── 20250422202222.png ├── 20250423145640.png ├── 20250423151350.png ├── 20250423151555.png ├── 20250423151653.png ├── 20250423151829.png ├── 20250423151926.png ├── 20250423152208.png ├── 20250423152228.png ├── 20250423152641.png ├── 20250423153418.png ├── 20250423154224.png ├── 20250423154245.png ├── 20250424090858.png ├── 20250424094914.png ├── 20250424095057.png ├── 20250424095128.png ├── 20250424095304.png ├── 20250424103210.png ├── 20250424105517.png ├── 20250424105538.png ├── 20250424111752.png ├── 20250424111834.png ├── 20250424114524.png ├── 20250424114550.png ├── 20250424114607.png ├── 20250424143944.png ├── 20250424143951.png ├── 20250424145046.png ├── 20250424145426.png ├── 20250424150011.png ├── 20250427142805.png ├── 20250427145602.png └── 20250427151246.png ├── 前言.md ├── 基础示例.md ├── 嵌入式中的Vec等容器使用.md ├── 嵌入式异步编程.md ├── 环境搭建.md └── 类型系统.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/mdbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/.github/workflows/mdbook.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/LICENSE -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/ReadMe.md -------------------------------------------------------------------------------- /book-en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/book-en.toml -------------------------------------------------------------------------------- /book-zh.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/book-zh.toml -------------------------------------------------------------------------------- /chinese_version/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/.DS_Store -------------------------------------------------------------------------------- /chinese_version/img/20250421152134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250421152134.png -------------------------------------------------------------------------------- /chinese_version/img/20250421152403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250421152403.png -------------------------------------------------------------------------------- /chinese_version/img/20250421160423.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250421160423.png -------------------------------------------------------------------------------- /chinese_version/img/20250421160559.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250421160559.png -------------------------------------------------------------------------------- /chinese_version/img/20250421160744.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250421160744.png -------------------------------------------------------------------------------- /chinese_version/img/20250421163617.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250421163617.png -------------------------------------------------------------------------------- /chinese_version/img/20250421163638.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250421163638.png -------------------------------------------------------------------------------- /chinese_version/img/20250421164922.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250421164922.png -------------------------------------------------------------------------------- /chinese_version/img/20250421175609.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250421175609.png -------------------------------------------------------------------------------- /chinese_version/img/20250422172416.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250422172416.png -------------------------------------------------------------------------------- /chinese_version/img/20250422172522.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250422172522.png -------------------------------------------------------------------------------- /chinese_version/img/20250422175546.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250422175546.png -------------------------------------------------------------------------------- /chinese_version/img/20250422175559.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250422175559.png -------------------------------------------------------------------------------- /chinese_version/img/20250422193314.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250422193314.png -------------------------------------------------------------------------------- /chinese_version/img/20250422202222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250422202222.png -------------------------------------------------------------------------------- /chinese_version/img/20250423145640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250423145640.png -------------------------------------------------------------------------------- /chinese_version/img/20250423151350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250423151350.png -------------------------------------------------------------------------------- /chinese_version/img/20250423151555.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250423151555.png -------------------------------------------------------------------------------- /chinese_version/img/20250423151653.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250423151653.png -------------------------------------------------------------------------------- /chinese_version/img/20250423151829.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250423151829.png -------------------------------------------------------------------------------- /chinese_version/img/20250423151926.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250423151926.png -------------------------------------------------------------------------------- /chinese_version/img/20250423152208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250423152208.png -------------------------------------------------------------------------------- /chinese_version/img/20250423152228.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250423152228.png -------------------------------------------------------------------------------- /chinese_version/img/20250423152641.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250423152641.png -------------------------------------------------------------------------------- /chinese_version/img/20250423153418.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250423153418.png -------------------------------------------------------------------------------- /chinese_version/img/20250423154224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250423154224.png -------------------------------------------------------------------------------- /chinese_version/img/20250423154245.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250423154245.png -------------------------------------------------------------------------------- /chinese_version/img/20250424090858.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250424090858.png -------------------------------------------------------------------------------- /chinese_version/img/20250424094914.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250424094914.png -------------------------------------------------------------------------------- /chinese_version/img/20250424095057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250424095057.png -------------------------------------------------------------------------------- /chinese_version/img/20250424095128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250424095128.png -------------------------------------------------------------------------------- /chinese_version/img/20250424095304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250424095304.png -------------------------------------------------------------------------------- /chinese_version/img/20250424103210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250424103210.png -------------------------------------------------------------------------------- /chinese_version/img/20250424105517.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250424105517.png -------------------------------------------------------------------------------- /chinese_version/img/20250424105538.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250424105538.png -------------------------------------------------------------------------------- /chinese_version/img/20250424111752.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250424111752.png -------------------------------------------------------------------------------- /chinese_version/img/20250424111834.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250424111834.png -------------------------------------------------------------------------------- /chinese_version/img/20250424114524.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250424114524.png -------------------------------------------------------------------------------- /chinese_version/img/20250424114550.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250424114550.png -------------------------------------------------------------------------------- /chinese_version/img/20250424114607.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250424114607.png -------------------------------------------------------------------------------- /chinese_version/img/20250424143944.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250424143944.png -------------------------------------------------------------------------------- /chinese_version/img/20250424143951.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250424143951.png -------------------------------------------------------------------------------- /chinese_version/img/20250424145046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250424145046.png -------------------------------------------------------------------------------- /chinese_version/img/20250424145426.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250424145426.png -------------------------------------------------------------------------------- /chinese_version/img/20250424150011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250424150011.png -------------------------------------------------------------------------------- /chinese_version/img/20250427142805.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250427142805.png -------------------------------------------------------------------------------- /chinese_version/img/20250427145602.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250427145602.png -------------------------------------------------------------------------------- /chinese_version/img/20250427151246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/img/20250427151246.png -------------------------------------------------------------------------------- /chinese_version/嵌入式工程师的单片机Rust上手指南.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/chinese_version/嵌入式工程师的单片机Rust上手指南.md -------------------------------------------------------------------------------- /en/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/SUMMARY.md -------------------------------------------------------------------------------- /en/chapter/async-programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/async-programming.md -------------------------------------------------------------------------------- /en/chapter/basic-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/basic-example.md -------------------------------------------------------------------------------- /en/chapter/containers-in-embedded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/containers-in-embedded.md -------------------------------------------------------------------------------- /en/chapter/embedded-hal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/embedded-hal.md -------------------------------------------------------------------------------- /en/chapter/environment-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/environment-setup.md -------------------------------------------------------------------------------- /en/chapter/esp32-rust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/esp32-rust.md -------------------------------------------------------------------------------- /en/chapter/img/20250421152134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250421152134.png -------------------------------------------------------------------------------- /en/chapter/img/20250421152403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250421152403.png -------------------------------------------------------------------------------- /en/chapter/img/20250421160423.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250421160423.png -------------------------------------------------------------------------------- /en/chapter/img/20250421160559.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250421160559.png -------------------------------------------------------------------------------- /en/chapter/img/20250421160744.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250421160744.png -------------------------------------------------------------------------------- /en/chapter/img/20250421163617.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250421163617.png -------------------------------------------------------------------------------- /en/chapter/img/20250421163638.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250421163638.png -------------------------------------------------------------------------------- /en/chapter/img/20250421164922.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250421164922.png -------------------------------------------------------------------------------- /en/chapter/img/20250421175609.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250421175609.png -------------------------------------------------------------------------------- /en/chapter/img/20250422172416.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250422172416.png -------------------------------------------------------------------------------- /en/chapter/img/20250422172522.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250422172522.png -------------------------------------------------------------------------------- /en/chapter/img/20250422175546.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250422175546.png -------------------------------------------------------------------------------- /en/chapter/img/20250422175559.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250422175559.png -------------------------------------------------------------------------------- /en/chapter/img/20250422193314.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250422193314.png -------------------------------------------------------------------------------- /en/chapter/img/20250422202222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250422202222.png -------------------------------------------------------------------------------- /en/chapter/img/20250423145640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250423145640.png -------------------------------------------------------------------------------- /en/chapter/img/20250423151350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250423151350.png -------------------------------------------------------------------------------- /en/chapter/img/20250423151555.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250423151555.png -------------------------------------------------------------------------------- /en/chapter/img/20250423151653.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250423151653.png -------------------------------------------------------------------------------- /en/chapter/img/20250423151829.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250423151829.png -------------------------------------------------------------------------------- /en/chapter/img/20250423151926.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250423151926.png -------------------------------------------------------------------------------- /en/chapter/img/20250423152208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250423152208.png -------------------------------------------------------------------------------- /en/chapter/img/20250423152228.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250423152228.png -------------------------------------------------------------------------------- /en/chapter/img/20250423152641.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250423152641.png -------------------------------------------------------------------------------- /en/chapter/img/20250423153418.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250423153418.png -------------------------------------------------------------------------------- /en/chapter/img/20250423154224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250423154224.png -------------------------------------------------------------------------------- /en/chapter/img/20250423154245.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250423154245.png -------------------------------------------------------------------------------- /en/chapter/img/20250424090858.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250424090858.png -------------------------------------------------------------------------------- /en/chapter/img/20250424094914.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250424094914.png -------------------------------------------------------------------------------- /en/chapter/img/20250424095057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250424095057.png -------------------------------------------------------------------------------- /en/chapter/img/20250424095128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250424095128.png -------------------------------------------------------------------------------- /en/chapter/img/20250424095304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250424095304.png -------------------------------------------------------------------------------- /en/chapter/img/20250424103210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250424103210.png -------------------------------------------------------------------------------- /en/chapter/img/20250424105517.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250424105517.png -------------------------------------------------------------------------------- /en/chapter/img/20250424105538.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250424105538.png -------------------------------------------------------------------------------- /en/chapter/img/20250424111752.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250424111752.png -------------------------------------------------------------------------------- /en/chapter/img/20250424111834.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250424111834.png -------------------------------------------------------------------------------- /en/chapter/img/20250424114524.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250424114524.png -------------------------------------------------------------------------------- /en/chapter/img/20250424114550.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250424114550.png -------------------------------------------------------------------------------- /en/chapter/img/20250424114607.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250424114607.png -------------------------------------------------------------------------------- /en/chapter/img/20250424143944.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250424143944.png -------------------------------------------------------------------------------- /en/chapter/img/20250424143951.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250424143951.png -------------------------------------------------------------------------------- /en/chapter/img/20250424145046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250424145046.png -------------------------------------------------------------------------------- /en/chapter/img/20250424145426.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250424145426.png -------------------------------------------------------------------------------- /en/chapter/img/20250424150011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250424150011.png -------------------------------------------------------------------------------- /en/chapter/img/20250427142805.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250427142805.png -------------------------------------------------------------------------------- /en/chapter/img/20250427145602.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250427145602.png -------------------------------------------------------------------------------- /en/chapter/img/20250427151246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/img/20250427151246.png -------------------------------------------------------------------------------- /en/chapter/preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/preface.md -------------------------------------------------------------------------------- /en/chapter/rust-in-stm32-c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/rust-in-stm32-c.md -------------------------------------------------------------------------------- /en/chapter/type-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/en/chapter/type-system.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/index.html -------------------------------------------------------------------------------- /zh/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/SUMMARY.md -------------------------------------------------------------------------------- /zh/chapter/ESP32中的Rust开发.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/ESP32中的Rust开发.md -------------------------------------------------------------------------------- /zh/chapter/Embedded-HAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/Embedded-HAL.md -------------------------------------------------------------------------------- /zh/chapter/Rust嵌入stm32的C工程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/Rust嵌入stm32的C工程.md -------------------------------------------------------------------------------- /zh/chapter/img/20250421152134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250421152134.png -------------------------------------------------------------------------------- /zh/chapter/img/20250421152403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250421152403.png -------------------------------------------------------------------------------- /zh/chapter/img/20250421160423.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250421160423.png -------------------------------------------------------------------------------- /zh/chapter/img/20250421160559.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250421160559.png -------------------------------------------------------------------------------- /zh/chapter/img/20250421160744.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250421160744.png -------------------------------------------------------------------------------- /zh/chapter/img/20250421163617.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250421163617.png -------------------------------------------------------------------------------- /zh/chapter/img/20250421163638.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250421163638.png -------------------------------------------------------------------------------- /zh/chapter/img/20250421164922.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250421164922.png -------------------------------------------------------------------------------- /zh/chapter/img/20250421175609.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250421175609.png -------------------------------------------------------------------------------- /zh/chapter/img/20250422172416.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250422172416.png -------------------------------------------------------------------------------- /zh/chapter/img/20250422172522.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250422172522.png -------------------------------------------------------------------------------- /zh/chapter/img/20250422175546.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250422175546.png -------------------------------------------------------------------------------- /zh/chapter/img/20250422175559.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250422175559.png -------------------------------------------------------------------------------- /zh/chapter/img/20250422193314.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250422193314.png -------------------------------------------------------------------------------- /zh/chapter/img/20250422202222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250422202222.png -------------------------------------------------------------------------------- /zh/chapter/img/20250423145640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250423145640.png -------------------------------------------------------------------------------- /zh/chapter/img/20250423151350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250423151350.png -------------------------------------------------------------------------------- /zh/chapter/img/20250423151555.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250423151555.png -------------------------------------------------------------------------------- /zh/chapter/img/20250423151653.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250423151653.png -------------------------------------------------------------------------------- /zh/chapter/img/20250423151829.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250423151829.png -------------------------------------------------------------------------------- /zh/chapter/img/20250423151926.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250423151926.png -------------------------------------------------------------------------------- /zh/chapter/img/20250423152208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250423152208.png -------------------------------------------------------------------------------- /zh/chapter/img/20250423152228.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250423152228.png -------------------------------------------------------------------------------- /zh/chapter/img/20250423152641.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250423152641.png -------------------------------------------------------------------------------- /zh/chapter/img/20250423153418.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250423153418.png -------------------------------------------------------------------------------- /zh/chapter/img/20250423154224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250423154224.png -------------------------------------------------------------------------------- /zh/chapter/img/20250423154245.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250423154245.png -------------------------------------------------------------------------------- /zh/chapter/img/20250424090858.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250424090858.png -------------------------------------------------------------------------------- /zh/chapter/img/20250424094914.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250424094914.png -------------------------------------------------------------------------------- /zh/chapter/img/20250424095057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250424095057.png -------------------------------------------------------------------------------- /zh/chapter/img/20250424095128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250424095128.png -------------------------------------------------------------------------------- /zh/chapter/img/20250424095304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250424095304.png -------------------------------------------------------------------------------- /zh/chapter/img/20250424103210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250424103210.png -------------------------------------------------------------------------------- /zh/chapter/img/20250424105517.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250424105517.png -------------------------------------------------------------------------------- /zh/chapter/img/20250424105538.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250424105538.png -------------------------------------------------------------------------------- /zh/chapter/img/20250424111752.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250424111752.png -------------------------------------------------------------------------------- /zh/chapter/img/20250424111834.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250424111834.png -------------------------------------------------------------------------------- /zh/chapter/img/20250424114524.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250424114524.png -------------------------------------------------------------------------------- /zh/chapter/img/20250424114550.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250424114550.png -------------------------------------------------------------------------------- /zh/chapter/img/20250424114607.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250424114607.png -------------------------------------------------------------------------------- /zh/chapter/img/20250424143944.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250424143944.png -------------------------------------------------------------------------------- /zh/chapter/img/20250424143951.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250424143951.png -------------------------------------------------------------------------------- /zh/chapter/img/20250424145046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250424145046.png -------------------------------------------------------------------------------- /zh/chapter/img/20250424145426.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250424145426.png -------------------------------------------------------------------------------- /zh/chapter/img/20250424150011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250424150011.png -------------------------------------------------------------------------------- /zh/chapter/img/20250427142805.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250427142805.png -------------------------------------------------------------------------------- /zh/chapter/img/20250427145602.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250427145602.png -------------------------------------------------------------------------------- /zh/chapter/img/20250427151246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/img/20250427151246.png -------------------------------------------------------------------------------- /zh/chapter/前言.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/前言.md -------------------------------------------------------------------------------- /zh/chapter/基础示例.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/基础示例.md -------------------------------------------------------------------------------- /zh/chapter/嵌入式中的Vec等容器使用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/嵌入式中的Vec等容器使用.md -------------------------------------------------------------------------------- /zh/chapter/嵌入式异步编程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/嵌入式异步编程.md -------------------------------------------------------------------------------- /zh/chapter/环境搭建.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/环境搭建.md -------------------------------------------------------------------------------- /zh/chapter/类型系统.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adancurusul/Rust-Embedded-Tutorial-for-Engineers/HEAD/zh/chapter/类型系统.md --------------------------------------------------------------------------------