redeexpressos
redeexpressos
Hi. Im trying to integrate this software into a custom linux image built with yocto for tegra devices. I am using meta-tegra kirkstone, however, I'm getting these errors: ```` ERROR:...
Hi. I want to use this crate but it seems that `ìnit` needs a delay provider. ``` bme280::i2c::BME280 impl BME280 pub fn init(&mut self, delay: &mut D) -> Result where...
Hi. I'm trying to create an automatic CI/CD pipeline. However, it sometimes fails mid compilation with FETCH error URL. Usually, when this happens locally, I restart it and it works,...
From https://docs.rs/nmea-parser/latest/nmea_parser/enum.ParsedMessage.html#variant.Incomplete > The given sentence is only part of multi-sentence message and we need more data to create the actual result. State is stored in NmeaParser object. Any example...
```rs #[bitfield(u64)] #[derive(PartialEq)] pub struct Message { #[bits(8)] pub message_id: u8, #[bits(24)] pub time_of_reception: u32, #[bits(3456)] pub payload: [u8; 432], } ``` if i remove `(u64)`, throws `unknown type`. How...
Hi. Trying to build for windows, getting the following:  Is it possible to address this issue?
### Input C/C++ Header ```C++ #define UAVCAN_PROTOCOL_GETNODEINFO_REQUEST_SIGNATURE (0xEE468A8121C46A9EULL) ``` ### Bindgen Invocation ```Rust let bindings = bindgen::Builder::default() .clang_arg("-Iexternal/libcanard") .header("wrapper.h") .generate() .expect("Unable to generate bindings"); ``` ```rs pub const UAVCAN_PROTOCOL_GETNODEINFO_REQUEST_SIGNATURE: i64...
Hi. Im trying to build a recipe that will need git cli access (https://github.com/rust-embedded/meta-rust-bin/issues/185) I've looked at docs and found `GIT_CREDENTIAL_HELPER`, but not sure how to use it. Can I...
`.cargo/config.toml`: ``` [net] git-fetch-with-cli = true ``` However, when compiling with bitbake, it cannot find the private crates. ``` | Caused by: | failed to load source for dependency `rust-protobufs`...
Trying to build a crate that depends on `protoc`. When cross-compiling, I have to add `Cross.toml`: ```toml [build] default-target = "armv7-unknown-linux-gnueabihf" pre-build = [ "dpkg --add-architecture $CROSS_DEB_ARCH", "apt-get update &&...