datdenkikniet
datdenkikniet
I noticed that this package is not published on `crates.io`. I think it'd be good to add this, to simplify installation and ensure that there will be a nice backup....
A generic way for the user to obtain an ID that allows them to ask a `Device` for information about the frame/packet with which a specific (UDP) packet was sent....
Hi all, Currently, there are two types of API's being used for enabling peripherals: an `Ext` trait with something similar to an `enable` function, or a function like `HalPeripheralWrapper::peripheralN(peripheralN: PACStruct)`....
Hello, When using the following snippet in my code (as part of a Wiegand reader program) on a Raspberry Pi 0: ``` let monitor_0: Next = events0.next(); let monitor_1: Next...
**Problem** When using a local registry located at `/home/user/rust/crates.io-index` (which is simply a clone of `https://github.com/rust-lang/crates.io-index.git`) , specified in `~/.cargo/config` using the following config: ``` [source] [source.mirror] registry = "file:///home/user/rust/crates.io-index"...
Currently, `BlockDevice::read` and `BlockDevice::write` (and practically all functions in `SdMmcSpi` and `BlockSpi`) receive `&self`. Why is this done? In my opinion, they should receive `&mut self`, so that responsibility of...
Currently it seems that the 1 billion rows file is generated randomly. Making the generation pseudorandom would make sharing the 1 billion row file a little easier (since it should...
Addresses #35. ~~This is currently not implemented/added for CreateMeasurements2 (@rschwietzke).~~ ~~If it's desirable that both produce the same output, LMK and I can add that.~~ Makes both CreateMeasurement implementations generate...
This PR adds an async version/wrapper around `spsc::Queue` with fallible interfaces that can be used in sync contexts. Currently it uses a (non-public) single slot queue to store wakers. We've...