rust-esp32-std-demo icon indicating copy to clipboard operation
rust-esp32-std-demo copied to clipboard

Rust on ESP32 STD demo app. A demo STD binary crate for the ESP32[XX] and ESP-IDF, which connects to WiFi, Ethernet, drives a small HTTP server and draws on a LED screen.

Results 23 rust-esp32-std-demo issues
Sort by recently updated
recently updated
newest added
trafficstars

Fixes #116 Also bails with build failures if the image would not fit into the partitions defined by the csv file.

Fixes #116 by setting `partition.csv` path in `Cargo.toml` as described [here](https://github.com/esp-rs/espflash/blob/master/cargo-espflash/README.md#package-metadata)

sdkconfig.defaults is missing: ``` CONFIG_PARTITION_TABLE_SINGLE_APP= CONFIG_PARTITION_TABLE_CUSTOM=y ``` But even then the build is looking for the partitions.csv in the wrong place

I believe embuild 0.30 breaks the `build.rs` script: From my project which uses the same `build.rs`: ``` error[E0432]: unresolved imports `embuild::bingen`, `embuild::symgen` --> build.rs:4:11 | 4 | self, bingen, |...

Env: ``` rustc --version rustc 1.63.0-nightly (d89202f1f 2022-08-24) cargo --version cargo 1.63.0-nightly (fd9c4297c 2022-07-01) esp-idf release-v4.4 ``` Monitor out: ``` I (23634) rust_esp32_std_demo: One-shot timer triggered E (26614) task_wdt: Task...

I saw that this demo is using mqtts but how can I upload certificates and keys to the board like the [esp-secure-cert-tool](https://github.com/espressif/esp_secure_cert_mgr/tree/main/tools#esp_secure_cert-configuration-tool) do? My goal here is to have something...

It flashes successfully and starts but then something goes wrong, what could be the cause? ``` Hello from Rust! More complex print ["foo", "bar"] Result: 0, 1 Rust main thread:...

What about making the partition table explicit and not relying on lucky defaults from `espflash`? What about integrating this together with #117 which works like a charm for me when...

I have a **Heltec WiFi LoRa 32 (V3)** board, which isn't yet supported by this repository, but it's very similar and I just had to switch a few pins. When...

Hi, I can't get enough FPS on 320x240 screen. Can you add some DMA example to work with SPI LCD, please? I've started Reddit thread about it, but still no...