From f29522985dac3782abe8fb07ffb129f6e8facfe5 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sun, 21 Sep 2025 12:04:00 -0400 Subject: [PATCH] Fix README for lcd example. --- esp/rust/03_no-std-lcd/README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/esp/rust/03_no-std-lcd/README.md b/esp/rust/03_no-std-lcd/README.md index 1997c28..3690101 100644 --- a/esp/rust/03_no-std-lcd/README.md +++ b/esp/rust/03_no-std-lcd/README.md @@ -6,8 +6,14 @@ When flashed to a device, the application draws a message to the LCD screen. Steps used to generate this project ```bash -cargo install cargo-generate -cargo generate --git https://github.com/esp-rs/esp-idf-template.git --name no-std-lcd -d mcu=esp32 -d std=false +cargo install esp-generate +esp-generate --chip esp32 esp-gen-no-std +``` + +You will also need to install [probe-rs](https://probe.rs/docs/getting-started/installation/) + +```bash +curl --proto '=https' --tlsv1.2 -LsSf https://github.com/probe-rs/probe-rs/releases/latest/download/probe-rs-tools-installer.sh | sh ``` Steps to build and flash this project