Results 21 comments of VersBinarii

I'm not trying to be smart and perhaps i'm missing some nuances of driver design but if a chip offers a set of data to be read there has to...

> Reading a single value might be an easy addition, but once you enter the world of iterators or sized arrays things get complicated very quickly and that's what we...

Can you please try the linux-embedded-hal with the latest embedded-hal alpha releases? Those errors are related to the traits introduced in the e-h alpha releases. https://lib.rs/crates/linux-embedded-hal

@brandonros You can find a working example in here using RTIC and this HAL: https://github.com/VersBinarii/glare/blob/30b1ca62e5f119d32d56fb4df3fc24432fd457a4/src/main.rs It should be easy to migrate it to a non RTIC setup by just moving...

Try handling the 2 `unwrap()` calls you have in the code and run the program under debugger. You are probably hitting a error condition somewhere which causes the `unwrap()` to...

Thank you for this. I think i will wait for the next release of the `stm32f4xx-hal` before merging this. Could you please provide an example for the async code usage?

Yes, exactly, async with embedded is quite new. TBH the only embedded async executor i'm aware of is `embassy` but i know nothing more about it beyond that. So i...

Thanks for the link. I have been meaning to try out embassy for some time. Cheers 👍🏻 > yes, I know it's ridiculous to have 5kloc and counting for some...

In vim i have following: ``` " Format selected block of HTML code noremap f :'

I also think that having a common Orientation enum in e-g would be useful. I have a display driver and a touch controller driver that both have to define their...