Finomnis
Finomnis
I do agree with the plan to decouple from a specific runtime, and I don't think it's hard. So far for my lpspi rework I don't have anything that is...
@mciantyre For timer adapters, can't we use [`rtic-monotonics`](https://docs.rs/rtic-monotonics/latest/rtic_monotonics/imxrt/index.html)? While having `rtic` in its name, it's actually runtime agnostic and supports eh1 and eh1-async. (Disclaimer: I implemented it)
@mciantyre Would you mind an intermediate release, now that we implemented GPIO and UART for e-h 1.0? I need that for a [project of mine](https://github.com/Finomnis/BluefruitSPI) and would like to official...
@mciantyre Sorry that I was gone for a while. Don't know how much time I will be able to spend on the SPI device, but I'll try to do a...
@mciantyre Ping :)
@teburd I don't think I agree time to continue this any time soon, so let's keep that one open because it's a breaking change.
@mciantyre Welcome back! Glad to see your life has cooled down enough to dabble in some Rust again :)
Be aware that in your second example, nothing prevents the user from dropping `buf` while it is still in use. The flag does prevent re-use, but if you `forget()` the...
I think you misunderstand what I'm trying to say; I'm not talking about forgetting `buf` in the second case. I'm taking about forgetting `borrow`, releasing it's `'a` reference without running...
`rtic-monotonic` seems to be deprecated. I'm sorry for the confusion, we had a full rtic-monotonics rewrite just a couple of weeks ago. (as @AfoHT pointed out, #874) The rewrite is...