-
I'm using `embassy_sync::Pipe` to distribute variable sized messages within my application. The messages are framed and there is a single reader for each pipe. This works fine. (is there a better way?…
-
Hi, I'm trying to follow the example to use the driver, but the initialization depends on the `embassy_time`'s definition of a Delay trait. It would be nice to see how to do it with the lower-level `e…
-
### Code
```rust
#[diagnostic::on_unimplemented(
message = "Arguments to embassy tasks must be 'static",
label = "Not 'static",
note = "See https://embassy.dev/... for more details on sha…
-
As there is to my knowledge not an available DFU bootloader on esp for no_std applications, I've been attempting to implement `embassy-boot` for ESP architectures, attempting to copy the layout of the…
-
I have no idea where the rprintf macro documentation is, or has rprintf been deprecated? It is mentioned twice on this page:
https://embassy.dev/book/#_what_is_embassy
-
**Describe the bug**
Every time probe-rs disconnects from the target MCU, this code:
https://github.com/probe-rs/probe-rs/blob/master/probe-rs/src/vendor/st/sequences/stm32_armv7.rs#L94-L96
clears …
-
I am new-ish to embedded Rust so it is entirely possible I'm misunderstanding how to change a chip in the examples. Here is what I did.
After changing `embassy/examples/stm32h5/Cargo.toml` to
``…
-
Currently, when compiling picoserve, all of the workspace members are included in the crate, leading to these being downloaded although they are never used. Removing the examples from the `Cargo.tom…
-
Hello,
I'm new to embassy development, I have tried to use my stm32 nucleo F401RE but, following the getting started tutorial, this is the result:
`❯ cargo run --release --bin blinky
Compiling…
-
QSPI in H7 uses MDMA, which `embassy` or `embassy_stm32` not yet implemented.
Solution is to implement MDMA support in `stm32-data` and `embassy_stm32::dma`.