Daniel Dulaney
Daniel Dulaney
Both Windows and Unix have functions (`PurgeComm` and `tcflush`) that clear out the underlying send and receive buffers without sending the data. This can be useful for call-and-response serial connections,...
It looks like a few of the `processthreadsapi.h` functions are commented out. Is there any reason for this? If not, I can make a quick PR enabling them. https://github.com/retep998/winapi-rs/blob/a6dd5510212a2f0f5aae66e60949bd6fdaa0a44d/src/um/processthreadsapi.rs#L212-L214
Would it be possible to detect the SPI buffer size based on `/sys/module/spidev/parameters/bufsiz` and automatically chunk SPI transfers? I am writing a higher-level interface that is meant to work on...
Closes #61. Linux limits the maximum SPI read and write length based on an internal buffer. If any individual read or write exceeds the buffer length, EMSGSIZE is returned. This...
In addition to the documented SPI interface, the Inky pHAT (also most likely the wHat, but I don't have access to that hardware) also uses the I2C interface pins (in...
Allows `from="1.2.3.4, 5.6.7.8"` in authorized_keys when previously the space would be treated as part of the list item.