Paul Osborne
Paul Osborne
In a library I created (not open sourced, unfortunately, as it is for my employer), I ended up doing the following. Unlike construct, the syntax for the DSL we ended...
FWIW, I believe I have seen this same problem when doing U-Boot tftp transfers. Have not tested the PR but could probably give it a whirl to see if it...
Those files were added by @thejpster with this commit: https://github.com/posborne/cmsis-svd/commit/4eb54d1955af6dcad3cb053c444f258c3979ccff which references another thread on the TI forums for the source: https://e2e.ti.com/support/microcontrollers/tiva_arm/f/908/p/261081/966053
@IniterWorker meta-rust-bin is a separate layer that makes use of the prebuilt compiler and sysroots: https://github.com/rust-embedded/meta-rust-bin. This has some advantages and limitations and only targets stable releases or rustc/cargo. This...
Hey @RandomInsano; this would definitely be a fine feature to add to the i2cdev crate. If you have something I think we could probably move forward with a PR or...
Polling using your mechanism of choice is fine -- Providing a way to conveniently integrate this lib with tokio is not in the lib today but is something that probably...
@dbrgn Nope, this isn't part of the userspace API. Typically, this is done via devicetree as part of the board setup for custom hardware. For hobbyist boards which are less...
Ok, I might have spoken a bit too soon as some new stuff landed in kernel 5.5. I'll leave this open and get back to it once I do some...
https://microhobby.com.br/blog/2020/02/02/new-linux-kernel-5-5-new-interfaces-in-gpiolib/ has a nice summary (libgpiod focused). There's a new V2 ABI for GPIO which we'll need to update to support (while keeping some compatability with the V1 ABI for...
The actual value (0, non-zero) is modeling "active" state for the line which can be inverted in the kernel via the active-low setting. I could see `is_active` and `set_active` as...