add a link about learning about micro controllers through rust

This commit is contained in:
Nate Finger 2018-10-16 19:37:45 -04:00
parent 6fbc9e27bd
commit d40d8c25b5

View file

@ -10,6 +10,9 @@ This repository collects resources for writing clean, idiomatic Rust code. [Plea
* [Programming an ARM microcontroller in Rust at four different levels of abstraction](http://pramode.in/2018/02/20/programming-a-microcontroller-in-rust-at-four-levels-of-abstraction/) by [Pramode C.E ](http://pramode.in/about/) - Demonstrates how Rust helps to move from brittle, low-level embedded code to high-level abstractions with zero cost.
* [Discover the world of microcontrollers through Rust!]
(https://rust-embedded.github.io/discovery/README.html) - This book is an introductory course on microcontroller-based embedded systems that uses Rust as the teaching language rather than the usual C/C++.
### 2017
* [Lessons learned redesigning and refactoring a Rust Library](https://mgattozzi.com/refactor-rust) by [@mgattozzi](https://github.com/mgattozzi) - `RefCell`, the builder pattern and more.