Robin Mueller
Robin Mueller
Actually, I have issue building this locally without warnings with current nightly. Adding the following snippet to `Cargo.toml`: ```toml [lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ['cfg(docs_rs)'] }...
After some more research: It is sufficient to use ```rs #![cfg_attr(docsrs, feature(doc_auto_cfg))] ``` in the `lib.rs`. The `docsrs` configuration will be set by docs-rs automatically. In the `Cargo.toml` ```toml [package.metadata.docs.rs]...
Hmm, introducing a link to a tag would introduce overhead to update the links on every release though.. As it is right now, users could at least click on the...
Alternatives: 1. Centralize documentation by peripheral module inside `examples/README.md` (maybe some other tool can check the links more easily) and only refer to that document. I think markdown can also...
To be honest, after some more research, there seems to be this easier way now to determine these paths: ```sh ❯ ls /dev/serial/by-id/* /dev/serial/by-id/usb-2012_Cypress_Semiconductor_Cypress-USB2UART-Ver1.0G_016D19950E13-if00 /sys/bus/usb🔒 ❯ ll /dev/serial/by-id/* lrwxrwxrwx -...
Maybe I can look into this if I find the time. I first have to figure out how to do this cleanly with CLI tools, which is complicated enough weirdly.....
Thanks a lot! I am working with some USB devices currently, so I will definitely check this out.
I just tried the command. Very nice, thanks!
@luojia65 Is there still activity/interest to get this merged? I started working on a SDIO driver on a Zynq7000 which also has a dedicated SDIO controller, so thihs looks very...
I fixed this in https://github.com/jamesmunns/cobs.rs/pull/39 : All functions return `DecodeError::FrameEmpty`