Justin Beaurivage
Justin Beaurivage
@rvdende, here is a snippet which should achieve what your're after: ```rust use atsamd_hal::pac::SCB; /// RAM size (32 kB for ATSAMD21E18A) const HMCRAMC0_SIZE: u32 = 0x00008000; /// RAM base address...
@tgross35, another approach would be using a timer queue. When scheduling timeouts, they are added to a queue, and the timer can then generate an event when the next timeout...
I agree with giving the user the option of using low speed, however I don't really agree with using a Cargo feature for that. A builder pattern method on the...
@TethysSvensson, @bradleyharden, you can find a very minimal proof of concept of what a custom proc-macro would look like here: https://github.com/jbeaurivage/atsamd/tree/proc-macro. I'm still in the process of discovering what we...
Superseded by #728
@mattthebaker, I'm going to run a few tests with this PR, but it seems like it solves some USB issues on my HW as well.
#800 Fixes neopixels when using SPI without DMA.
I think at this point it's just a matter of reinstating the neopixel examples in the pygamer BSP - we had temporarily removed them to avoid shipping broken examples. I'm...
Before this issue gets closed, I 'd like to point out that wile we seem to be gravitating towards using SPI to drive our neopixel examples, there could be other...
> I think this should stay open as long as we use the timer-based WS2812 driver for examples, as it's going to remain a point of friction. Do you mean...