Andrew Walbran

Results 113 comments of Andrew Walbran

This won't work until https://github.com/nrf-rs/nrf-usbd/pull/17 is released.

I tried to reproduce this locally with just the nrf52833-hal package and couldn't, so I suspect there is something weird going on with versions. I'll leave this open for now...

There are already tags for all the recent releases, you should be able to create GitHub releases for them.

It didn't exist when I was writing this, but yes, now that version 2 of zbus is released it could be an option, and being pure Rust would be nice....

I mean that a rewrite of `bluez-async` to use `zbus` would need to be tested a fair bit before release. Even if `zbus` has no bugs, it's still different to...

With BlueZ you can get either the device ID (e.g. "hci0") or the modalias (which contains the USB vendor and product ID, if it's a USB adapter). I guess you'd...

Have you set up `pkg-config` for cross compilation? You'll need `libdbus` to link against, at least. [cross](https://crates.io/crates/cross) is one way to do this, you'll want something like [this Dockerfile](https://github.com/alsuren/mijia-homie/blob/master/docker/Dockerfile.debian-buster-armv7).

`btleplug` on Linux depends on `libdbus`, so you'll need to have it available to link against for your target architecture. How to do that depends on what distribution you are...

Did you install libdbus-1-dev in the Docker container for cross, using the Dockerfile I linked or otherwise?