wg
wg copied to clipboard
Coordination repository of the embedded devices Working Group
## Rationale I’ve digged into Rust Embedded a few weeks ago, after lurking at it for some time. Before to say anything else, I want to thank you so much...
### Triage(2018-08-21) A pre-RFC discussing what should go in `core::arch::arm` have been opened in #184 ### [Update - 2018-07-27](https://github.com/rust-lang-nursery/embedded-wg/issues/63#issuecomment-408329142) Intrinsics like `__NOP` are now available in [`core::arch::arm`](https://doc.rust-lang.org/nightly/core/arch/arm/index.html). Path towards stabilization...
As previously discussed at the Rust All-Hands 2019 in Berlin, this RFC proposes to change the way that `svd2rust` generates platform crates, away from peripheral modules to peripheral sub-crates. [Rendered...
Well, I hope this wasn't overly ambitious/audacious to do without really talking to anyone about it, but I made an `accelerometer` crate: - **repo:** https://github.com/NeoBirth/accelerometer.rs - **crate:** https://crates.io/crates/accelerometer - **docs:**...
## Overview This post is a summary of the our evaluation of using Rust for an embedded project, and the gaps we hit and why we ultimately decided to use...
I've just learned that LLVM can, in fact, do a *limited* stack size analysis: https://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20130603/177010.html. It's not interprocedural but I think it's still quite useful e.g. if LLVM ends up...
This ``` rust // empty.rs fn main() -> ! { loop {} } ``` generates a [.text section of 94 bytes](https://gist.github.com/japaric/b8364106dbff1f1e31dfda9d44ab2aed#file-empty-objdump) This ``` rust // print-no-fmt.rs fn main() -> !...
this is an RFC to change how we track yearly goals (previously edition goals) to reduce the amount of triage time during weekly meeting. TL;DR we go from weekly poll-based...
This issue is to discuss doing a embedded Rust version of ["The Rust Libs Blitz"](https://blog.rust-lang.org/2017/05/05/libz-blitz.html). The idea would be to review library crates: their implementation (\*), their API surface, their...
This issue is for tracking progress on developing `cortex-r-*` crates that will be maintained by the WG. The current plan is - Make the [`cortex-r-rt`] crate more generic and move...