From d06ce4a7789f10938a8727c3c134178a85e528f9 Mon Sep 17 00:00:00 2001 From: AdinAck Date: Tue, 13 Feb 2024 09:36:35 -0800 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 71e082c..41bb9e8 100644 --- a/README.md +++ b/README.md @@ -37,17 +37,17 @@ You can see how the `init` command works with: cargo embassy init --help ``` -To deploy the project, run: +To run the project, use: ``` -cargo embed +cargo run ``` -...or to run the project with RTT: +...or to deploy the project without RTT: ``` -cargo run --features defmt +cargo embed ``` -> `defmt` is *opt-in* so for RTT the `defmt` feature must be enabled. +> `defmt` can be removed for production deployments by disabling the "debug" feature with `--no-default-features`. # Examples