An open API service indexing awesome lists of open source software.

https://github.com/esp-rs/no_std-training

Getting-started guide on using the Rust with Espressif SoCs using no_std.
https://github.com/esp-rs/no_std-training

bare-metal embedded esp32 mdbook nostd rust training

Last synced: 3 months ago
JSON representation

Getting-started guide on using the Rust with Espressif SoCs using no_std.

Awesome Lists containing this project

README

          

# no_std training

[![CI](https://github.com/esp-rs/no_std-training/actions/workflows/ci.yml/badge.svg)](https://github.com/esp-rs/no_std-training/actions/workflows/ci.yml)

This repository contains Training Material for learning to use Embedded Rust with `no_std` with the Espressif ESP32-C3.

We suggest you start by reading [the book](https://esp-rs.github.io/no_std-training/).

## Contents

* Some introductory level examples:
* A basic hello-world ([Source](./intro/hello-world))
* A `panic` example([Source](./intro/panic))
* A blinky example([Source](./intro/blinky))
* A button example([Source](./intro/button))
* A button with interrupt example([Source](./intro/button-interrupt))
* An HTTP client example([Source](./intro/http-client))