Benjamin Kamath

Results 9 comments of Benjamin Kamath

Appreciated. I've actually used the two pieces of hardware in a c/c++ project, including ones that used the F021 library. Your work is actually what made me think about trying...

My primary use case for a c/c++ build system would be in a cross compiling environment as well. I'm playing around with places to add hooks to `build`. One that...

I get a similar error with svd files for ATSAML10xx.svd and ATSAML11xx.svd files. It's strange though, since one of the svd files I got from here: https://github.com/evq/atsaml11xxx and it looks...

Ah, gotcha! The SVDConv tool distributed with the CMSIS pack doesn't seem to catch this as a problem. It would be nice if svd2rust handled schema/format issues in a more...

I'm continuing development on this here: https://github.com/kamathba/nrf52dk-sys/tree/crate-updates Have some experience with the nordic parts and using this as an exercise to learn some embedded rust. Might try having configs for...

I have an interesting scenario where we are getting this warning that feels a little like a false positive. We have a project that we can build with `x86_64-unknown-linux-gnu` or...

@ehuss I think its mostly because of us using both the `x86_64-unknown-linux-gnu` and `x86_64-unknown-linux-musl` targets and we want everything to "just work". Also, we use cargo-rpm, which doesn't seem as...

I will leave a breadcrumb here in case I don't get to making a PR. Main hint was here: https://libusb-win32-devel.narkive.com/5JWg4Ofi/identify-the-physical-usb-ports-used-by-a-driver-handle#post3 Which refers to this code: `usb_enumerate_hub`: https://github.com/libusb/libusb/blob/116d34f608b02f4e14668450b158acf5db726f95/libusb/os/windows_usb.c#L870 `set_device_paths`: https://github.com/libusb/libusb/blob/116d34f608b02f4e14668450b158acf5db726f95/libusb/os/windows_usb.c#L1401 Since...

I had a different issue with CreateVirtualEnvironment.make on Ubuntu 20.04 that I solved by manually creating a virtual environment and installing dependencies to it (and commenting out the call in...