Various changes

This commit is contained in:
2025-04-13 23:12:38 +02:00
parent 716cf2355f
commit c88b401675
4 changed files with 34 additions and 13 deletions

20
readme.md Normal file
View File

@@ -0,0 +1,20 @@
Wallas DT/GB Heater Controller on an ESP32C3
============================================
## Getting Started
As described in the chapter on Risc-V target installation in the [Rust on ESP Book](https://docs.esp-rs.org/book/installation/riscv.html),
you should install the ESP32c3 target for your rust toolchain by doing:
```bash
rustup toolchain install stable --component rust-src
rustup target add riscv32imc-unknown-none-elf
```
It is advised to run the `--release` version of the application, thus to build and run, do:
```bash
cargo build --release
cargo run --release
```