John Stanford

Results 6 issues of John Stanford

When I follow the build instructions and run the executable, I get the following panic. This is on Ubuntu 21.04 with Rust 1.58. ``` thread 'main' panicked at 'attempted to...

It looks like in `io_service_mgr`, you're trying to re-use an existing IO service if available, but then you assign a new value to `io_srv` in the switch statement starting at...

The "Cross Compiling" paragraph of section 2.1 should mention that new users will need to install the thumbv7m-none-eabi target using rustup. `rustup target add thumbv7m-none-eabi`

If `ADF5356_MAX_FRAC2` wins this comparison, then I don't think it'll fit into the `uint16_t` that we're casting it into. Its value is 268435455 and log2(268435455) = 28. https://github.com/EttusResearch/uhd/blob/0e50a37b5ec6039ed4e8947421dd333047e24408/host/lib/include/uhdlib/usrp/common/adf535x.hpp#L569C60-L569C77

I think the widths of the gain values here should be 6 bits, not 10. There's 32 bits of GPIO and the upper 16 bits are TX and the lower...

I've got an idea on how to make the async API work. I've got it working on a local branch and it seems to be working pretty well. It basically...