fix Cargo.toml and config.toml keys

This commit is contained in:
JuliDi 2023-12-05 10:10:47 +01:00
parent bf7115cb44
commit 1f6ffdcdd2
No known key found for this signature in database
GPG key ID: E1E90AE563D09D63

View file

@ -142,10 +142,11 @@ Note that the git revision should match any other embassy patches or git depende
* Make sure link:https://docs.rs/cortex-m/latest/cortex_m/peripheral/struct.SCB.html[flash cache] is enabled
* build with `--release`
* Set the following keys for the release profile in your `Cargo.toml`:
** `opt-level=s`
** `lto=fat`
** `build-std=core`
** `build-std-features=panic_immediate_abort`
** `opt-level = "s"`
** `lto = "fat"`
* Set the following keys in the `[unstable]` section of your `.cargo/config.toml`
** `build-std = ["core"]`
** `build-std-features = ["panic_immediate_abort"]`
* Enable feature `embassy-time/generic-queue`, disable feature `embassy-executor/integrated-timers`
* When using `InterruptExecutor`:
** disable `executor-thread`