diff --git a/src/writing-your-own-application/generate-project/index.md b/src/writing-your-own-application/generate-project/index.md index 326d815..b395a6d 100644 --- a/src/writing-your-own-application/generate-project/index.md +++ b/src/writing-your-own-application/generate-project/index.md @@ -11,6 +11,7 @@ Both templates are based on [`cargo-generate`][cargo-generate], a tool that allo cargo install cargo-generate ``` 2. Generate a project based on one of the templates: + > 🚨 **Warning**: On Windows the complete path to your project must be no more than 10 characters. - `esp-template`: ```shell cargo generate esp-rs/esp-template @@ -24,7 +25,7 @@ Both templates are based on [`cargo-generate`][cargo-generate], a tool that allo When the `cargo generate` subcommand is invoked, you will be prompted to answer several questions regarding the target of your application. Upon completion of this process, you will have a buildable project with all the correct configurations. -3. Build/Run the generated project: +4. Build/Run the generated project: - Use `cargo build` to compile the project using the appropriate toolchain and target. - Use `cargo run` to compile the project, flash it, and open a serial monitor with our target device.