Frank Pagliughi

Results 32 issues of Frank Pagliughi

The word "length" is spelled incorrectly in the parameter matching tuple. So if someone used the long param, it wouldn't match.

Added a "filter" option to the `hex2bin` script and function to prevent extra padding to be written to the binary file.

Commit 784dc0958c08f4894258c8a2f5b411e36b38fad4 in PR #17 introduced stateless I/O functions, like `read_r()` and `writre_r()`, which return an `ioresult` type that wrap the success and _specific_ error values derived from `errno` or...

I've been looking through some C examples for some SocketCAN Netlink communications, and they all seem to set the socket buffer sizes. Like: ``` int sndbuf = 32768; int rcvbuf...

enhancement

Big apologies for dropping the ball on #140 a while back. Work on the socketcan crate stalled while the project maintainership was being ironed out, but now a lot of...

enhancement

This is another usability nit. When using the asynchronous objects, like `tokio::AsyncRequest`, it you put them behind a pointer like an `Arc`, it becomes difficult to access the underlying synchronous...

It would be nice to have an optional cargo build feature to allow `Device` information and `Event` data to be easily serialized using serde. If you're interested, I could do...

The `build.rs` file is hard-wired to search for the libiio files under `/opt/homebrew/Frameworks` on a Mac. This isn't the standard location for homebrew files on all machines or versions, and...

The constant `MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER` is misspelled. This fixes it, but also keeps the mis-spelled original version so as not to break any code that uses the existing value. The original version...

When just the static library is built, the CMake targets are properly exported (i.e. _xxx-static_, like `eclipse-paho-mqtt-c::paho-mqtt3a-static`, etc). But when both the shared _and_ static libraries are built, only the...