Dario Nieuwenhuis
Dario Nieuwenhuis
yep, that :point_up_2:
This PR adds support for running a webserver serving on multiple ports. You can specify multiple `--port` and `--appPort` flags, and each pair will create a new proxy. If flags...
This uses `critical_section::with` instead of `cortex_m::interrupt::free` to acquire a critical section. This allows customizing the critical section implementation, to make it sound for multicore chips for example. This is a...
This PR adds an `xwayland scale N` command that sets a "global scale factor" for xwayland apps to N. This causes all xwayland windows to be rendered at that scale....
This is an experiment of removing "peripheral instance" generics on driver structs. For example, uart is now `Uart`. Everything is still checked at compile time as before (such as pin...
Requires https://github.com/rust-embedded/embedded-hal/pull/407 See that PR for a list of papercuts encountered. Only nrf updated for now.
Latest Rust nightlies have somewhat usable async-fn-in-trait support already! :tada: embassy-nrf updated here https://github.com/embassy-rs/embassy/pull/974 Paprecuts encountered: - there's this annoying error [playground](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2021&gist=f04fca1f2a3d643c323fb49c05bd3ed3), workaround is to use the concrete type instead...
The WRITE_SIZE, ERASE_SIZE etc are `usize`: https://github.com/rust-embedded-community/embedded-storage/blob/ef207385baa1a7dd34a6778a8bd0238b42f748e9/embedded-storage-async/src/nor_flash.rs#L7 But the addresses are `u32`: https://github.com/rust-embedded-community/embedded-storage/blob/ef207385baa1a7dd34a6778a8bd0238b42f748e9/embedded-storage-async/src/nor_flash.rs#L20 This makes doing math on addresses quite annoying: it needs a lot of casts. I sort of...
How can I detect from a handler that the underlying request is canceled? Other server implementations such as `hyper` drop the handle future on request cancelation, but it seems `async-h1`...
Every project using `cortex-m-rt` gets these linker warnings. I don't know what could cause them, it might be good to investigate if we can get rid of them. Normally they're...