I am a Vietnamese student having problems with the Rust programming language for the Esp32S3 microcontroller. I hope the community can help and share documents and tips so I can learn and do better. When I loaded the Code I encountered some unresolvable errors.
It would help if you copied ans pasted the actual errors you see, without that it is very hard to help at all.
We can offer better help if you share the errors you got. That being said:
Make sure you follow official docs for Xtensa Rust toolchain installation: Toolchain Installation - The Rust on ESP Book
It's not as straightforward as other targets because it will use a forked version of Rust and LLVM. It's highly recommended to use espup utility to setup the toolchain.
esp-generate is all you need if you have other tools installed. Using it, you can set up a project with any device that would work from the get-go. Depending on whether you want to do std or no-std, there might be different tools you need to install. With no-std, there's less that needs to be installed compared to std, which requires the ESP-IDF framework.
I highly recommend referring to The Rust on ESP book for more setup details.
This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.