Florian Jung

Results 37 comments of Florian Jung

Opportunistic Collecting: Frequently-needed items should be collected if available, regardless whether they're needed right now or not

beb75e94c22800dff25d7a672835413e07729372 and 090617d21b83835ad8f54a56d9abbc46ee265a31 work towards some separation. to do: clear subdirectories for the modules, and enforce that separation

Is this an issue for the other STM32Fx series as well?

Hi! I made [an attempt at implementing this](https://github.com/Windfisch/stm32f1xx-hal/commit/06f097afa96ac1798d872fe4bd3528167ea95c9e), but it turned out more difficult than expected. The issue is that we cannot just go [the stm32f4xx-hal way](https://github.com/stm32-rs/stm32f4xx-hal/blob/2ed3d3569543ba5edb2b8cc3338aa23af2d0dd73/src/spi.rs#L371,L388) by implementing traits...

Okay, [this attempt](https://github.com/Windfisch/stm32f1xx-hal/commit/299aacdd5c044d54eaadb6be77cdbada14c6b89f) is a bit ugly, since it enumerates all seven possible combinations of "some pin" vs "NoPin", but it looks like it could work. (untested!) What do you...

Thanks for your reply! I'd say I'm adding the same for UART and other peripherals and file it as a PR soon :).

I suspect that if you would just let the user keep the pin, they would not only be able to use it as GPIO (fine), but also use it to...

I worked on this in the last days and will file a PR tomorrow or so; currently, I both have implementations for receiving only, and for receiving-while-transmitting. The latter is...

@pozix604 I ran into the same problem and would love to see this fixed. Could you show in code how this could be solved?

Hi @faulesocke, while I don't have the time to write such an example right now, I can try to quickly answer your questions. Maybe you can make an example or...