Bryan Kadzban
Bryan Kadzban
Before I found svd2rust I and a co-worker had implemented a crate for stm32f2 that did single-bit writes with bitbanding, and it's something I miss quite a lot. We saw...
...Oh wow that example call was way off, both given the API of svd2rust and the SVD file I have for the KL03 microcontroller. It would be more like: `Peripherals::take().TPM0.conf.set_field(|w|...
I have one of these on the way here, along with an rpi 5, so I should be able to test things out once both of those arrive. I plan...
So, it registers in the PCIe subsystem, but in a standard Raspbian environment (as flashed onto an SD card by pishop.us) has no driver. :-/ ``` $ sudo lspci -vvv...
OK, yeah. I found the linux-config-6.6 package, with a contained -2712 config file; decompressing it and doing a "make oldconfig", then trawling through menuconfig, finds that the Device Drivers ->...
Takes at least an hour. :) At boot the driver loaded automatically, and mptsas got bound to the device in lspci. The connected drives did not show up ... but...
Any recent changes here? I found this issue after noticing that a big chunk of formatting code was linked into my WIP USB-HS DFU bootloader for an stm32f7. I'd already...
I haven't checked yet if feature flags are available to build.rs files, but if they are, would you be open to a PR adding a feature flag (on by default)...
So, another method on `RccExt`, then? I think that works as long as the caller doesn't modify the resulting `Rcc` struct in a way that causes `.freeze()` to break the...
The "assigning to `&T` is undefined behavior" error is new in nightly rust. The problem is that the code is trying to cast from a non-mutable reference to a mutable...