Diego Barrios Romero

Results 106 comments of Diego Barrios Romero

I had not thought this through. I agree with your assessment and would keep the API as-is, thanks!

I have adapted my classic [ads1x1x](https://github.com/eldruin/ads1x1x-rs) I2C ADC driver crate and the necessary changes to use this PR [were really minimal](https://github.com/eldruin/ads1x1x-rs/compare/master...i2c-split#diff-608c9c847a5c222a982918916ae43b403c7f3281867629be0c024236864678ff) :)

I have adapted [linux-embedded-hal](https://github.com/eldruin/linux-embedded-hal/blob/i2c-bus-device/src/i2c.rs) to this branch. I have not tested it in hardware yet but if I did not miss anything, I think it should work. In order to...

There have been some discussion over at #68, I am not sure if some progress has been made.

Regarding errors, there is a lengthy discussion in #229. Proposition 3 [here](https://github.com/rust-embedded/embedded-hal/issues/229#issuecomment-701258313) seems like a good candidate but we got lost in details.

The types from [`chrono`](https://crates.io/crates/chrono) can be used in `no_std` as well. I use them in the [`rtcc`](https://crates.io/crates/rtcc) crate where I define a trait for RTC devices. I implemented this in...

I'm currently implementing the trait for the `ds323x` driver. Stay tuned.

Ok, I just published version 0.3 of the [ds323x](https://crates.io/crates/ds323x) driver crate which implements the [`Rtcc`](https://crates.io/crates/rtcc) trait. Yes, the ability to switch between implementations without changes to the code that just...

@David-OConnor I'm glad to hear that. In the mean time I have updated my other RTC driver [`ds1307`](https://crates.io/crates/ds1307) to use the `Rtcc` trait as well. If you want to publish...