ravedude
is a tool I created to seamlessly run Rust code on AVR
microcontrollers with nothing more than the usual cargo run
. This is very
much inspired by the great cargo-embed tool!
git-tricks
- A collection of tricks/tips for using git efficiently
git push . origin/master:master
, git commit --fixup
, and many more!
This is a random list of nice git features/tricks that I have found to be very useful but which a lot people don't seem to know about.
Many people who have written C code for Arduino have at least heard of the
millis()
function at some point. It returns the number of
milliseconds since the program started running.
In avr-hal (a Rust library for AVR microcontrollers) there currently is no equivalent for it. Instead of waiting on someone to add that, let's see what it takes to build our own!
This is a blog post accompanying the release of shared-bus
. shared-bus is a small crate to allow
sharing a bus between multiple devices. The current implementation is limited to i2c but extension
to other bus protocols is easily possible.