ChanServ changed the topic of #rust-embedded to: Welcome to the Rust Embedded IRC channel! Bridged to #rust-embedded:matrix.org and logged at https://libera.irclog.whitequark.org/rust-embedded, code of conduct at https://www.rust-lang.org/conduct.html
spikespaz[m] has joined #rust-embedded
<spikespaz[m]> What is the current recommendation about using `embedded_hal_bus`? Should device drivers hold an `Arc<Mutex<T>>` where `T: I2c` or just hold an `impl I2c` and use `embedded-hal-bus` in client code?
dirbaio[m] has joined #rust-embedded
<dirbaio[m]> The latter.
starblue has quit [Ping timeout: 268 seconds]
starblue has joined #rust-embedded
starblue has quit [Ping timeout: 248 seconds]
starblue has joined #rust-embedded
<spikespaz[m]> I want to create an Instant in library code and would like to hear if there is a "best" crate that provides a platform-agnostic clock or a trait for it. I see many unpopular options, and embedded_timers looks like a thoughtful API, but has a strange license and is without an async version.
cbjamo[m] has joined #rust-embedded
<cbjamo[m]> If you can, I strongly recommend not using instants and instead using something that impls the DelayNs trait.
<cbjamo[m]> If you can't use delays, and are using async, embassy-time is the way to go. The only painful part of using embassy-time is that there can only be one version in the dependency tree so everyone has to stay in lockstep.
lulf[m] has quit [Quit: Idle timeout reached: 172800s]
jistr has joined #rust-embedded
pcs38 has joined #rust-embedded
ryan-summers[m] has joined #rust-embedded
<ryan-summers[m]> <spikespaz[m]> "I want to create an Instant in..." <- Both `embedded-time` and `fugit` provide valueable abstractions for managing time on embedded platforms. The actual clock implementation is going to be derived from your HAL though
<ryan-summers[m]> I'd probably go with fugit nowadays because embedded-time's maintainer disappeared after the library released
M9names[m] has joined #rust-embedded
<M9names[m]> I feel like I'm missing something in this question, does Instant mean something different than a point in time? how do you have an async API around that?
Ekho has quit [Remote host closed the connection]
ana_briated has quit [Ping timeout: 260 seconds]
ana_briated has joined #rust-embedded
Ekho has joined #rust-embedded
<ryan-summers[m]> Maybe the desire is an async Duration::from_millis(100).await?
<ryan-summers[m]> In which case, yeah probably you want embassy or RTIC for that
datdenkikniet[m] has quit [Quit: Idle timeout reached: 172800s]
danielb[m] has quit [Quit: Idle timeout reached: 172800s]
078AA6DO6 has joined #rust-embedded
047ABD9UT has joined #rust-embedded
ello_ has quit [Ping timeout: 252 seconds]
ello has quit [Ping timeout: 265 seconds]
sroemer has quit [Quit: WeeChat 4.4.3]
pvdrz[m] has quit [Quit: Idle timeout reached: 172800s]
ouilemur has quit [Quit: WeeChat 4.5.2]
ouilemur has joined #rust-embedded
starblue[m] has joined #rust-embedded
<starblue[m]> In Embassy: Timer::at(instant).await
<starblue[m]> Duration and Instant themselves are just data.
pcs38 has quit [Quit: leaving]
ouilemur has quit [Quit: WeeChat 4.5.2]
ouilemur has joined #rust-embedded
<spikespaz[m]> <ryan-summers[m]> "I'd probably go with fugit..." <- What about using `embassy-time` instead, and implementing the `embassy_time_driver` myself?s
<spikespaz[m]> <M9names[m]> "I feel like I'm missing somethin..." <- The goal is to make this function `no_std`. I am focused on the sync version of this library code, but also want to create an `async` version.... (full message at <https://catircservices.org/_irc/v1/media/download/AZbuRa1zi3Qj8nwDqiBhf0qzY6-_W0zx-QX8ssvwpCc8rwSBZI_aMgfXB6DG2g5Ug2F2OPYoMLtzJ2sPRdOmPlK_8AAAAAAAAGNhdGlyY3NlcnZpY2VzLm9yZy9DSUNvSkdneVhRYkVjVEVvclVpWm1EVFo>)
<spikespaz[m]> Ideally I can share a lot of code. I'm not sure how nb plays into this, it looks like a hack.
dngrs[m] has joined #rust-embedded
<dngrs[m]> nb used to be a popular approach for manual async programming
<dngrs[m]> haven't seen it around much in a long time
<spikespaz[m]> It describes it as a pattern to write code that can be adapted for either sync/async library code. Is that not the case anymore? I thought I would be able to create a dummy API that wraps functions returning nb::Result to behave somewhat reasonably with async, where the returned future just represents the status of nb::Error::WouldBlock as NotReady.
<M9names[m]> <spikespaz[m]> "What about using `embassy-time..." <- usually embassy_time_driver is implemented in a HAL. your library shouldn't get involved with that, but you could implement it in your binary crate.... (full message at <https://catircservices.org/_irc/v1/media/download/AT76mnIEtVBHX7oXXahJ2kWdMRl0G5zCkOl0svFkCq1TLqNQTIBCd8VtIA3GbGgZFCggIIJPgYE1oRFpXlS9cOW_8AAAAAAAAGNhdGlyY3NlcnZpY2VzLm9yZy90bEtFY1pudVhaeXJHd0Nyak9oQ1VUeWo>)
<spikespaz[m]> M9names[m]: Can `embassy_time` be used without using the Embassy executor and the rest of the framework? I just want the time features, but when I try to enable the `std` feature for the `embassy_time_driver` in my tests, I get failures for missing extern functions.
<M9names[m]> yes, you can use embassy-time without embassy-executor (with the generic-queue feature)