Sympatron GmbH
Sympatron GmbH
At the moment we only have examples for BSPs and while this might be the main use case for most users, I think it would be beneficial to also have...
I started working on ethernet support for SAME53/54. The basic initialization is copied from Atmel Start. Maybe someone can have a look at the overall structure of the code. Since...
Added support for Arduino Zero. Mostly copied from Arduino MKRZERO and Arduino Nano 33 IoT and adapted. I don't have an Arduino Zero and therefore cannot test this. Maybe @craben20...
Technically the following line would have to set `NVMCTRL_CTRLA_WMODE_MAN_Val` instead of `NVMCTRL_CTRLA_WMODE_MAN`, because the latter is already shifted and therefore not meant to be written to the bitfield. This only...
This is a tracking issue for the proposed type state system to ensure only currently valid/sensible methods are callable. @jonahd-g already put together some ideas in #31.
I wanted to start a discussion about the scope of `embedded-storage`. It could be one of the following: - Define a common interface between device drivers and generic storage implementations...
Quote from @MathiasKoch in #9: > How do you guys feel about nb::? Should these functions be nb? i am not sure it makes sense, unless implementors spend a lot...
First off, I am glad this finally got it's own repository so progress can be made in this area. I would vote to remove most of the traits currently in...
The currently implementation of the derive macro does set `T: defmt::Format` bounds for all generic parameters `T`. This is not allways correct. Consider the following example: ```rust trait Foo {...