Michael Watzko

Results 44 comments of Michael Watzko

Feel free to post PRs (please in reasonable sizes). If the CI is happy and the changes seem to be useful additions, I will happily merge them.

So, I've set up a basic workflow for the (Distinguished) Encoding Rules support, see the very very early boolean example - [example / test](https://github.com/kellerkindt/asn1rs/blob/df953d4e2c88413f058750f80daff992ec60035d/tests/der_basic_boolean.rs) - [(De-)Serialization impl](https://github.com/kellerkindt/asn1rs/blob/df953d4e2c88413f058750f80daff992ec60035d/src/protocol/basic/distinguished/mod.rs) - [Reader/Writer mappings...

Having the same issue, but only works if it just has been flashed by the debugger. Unplugging, and plugging it back to the debugger causes the ```MonoTimer``` to always read...

@TheZoq2 Got it running with the following workaround, which I call before ```MonoTimer::new```: ```unsafe { *(0xE000EDFC as *mut u32) |= 0x01000000; }``` See example C Code [here](https://stackoverflow.com/questions/13379220/generating-nanosecond-delay-in-c-on-stm32) and [here](https://www.stm32duino.com/viewtopic.php?t=1057), especially...

> A more rusty approach Haha, definitely. I just needed **some** kind of a solution yesterday evening :) Interesting that you found the ``demcr`` register, although I searched for it...

Hi, thanks for looking into it. The reason for this proposal is to get the [`Saturating type`](https://github.com/rust-lang/rust/issues/87920) to somewhere close to feature parity to the [`Wrapping type`](https://doc.rust-lang.org/beta/core/num/struct.Wrapping.html) before stabilizing it....

If you can execute all operations at once in the same scope, you can also just borrow the SPI bus and the pin for that: ```rust let mut spi =...

I'd also like to contribute. I have worked with a few microchip and atmel controllers in hobby projects since 2010, but with stm32 (+Rust) only since march. I'm not used...

One needs to send and receive two UDP packages, track the intermediate state and detect the when it needs renewal: https://en.wikipedia.org/wiki/Dynamic_Host_Configuration_Protocol Might be related for duration tracking: rust-embedded/embedded-hal#59 That... might...

Just for forgetful people like me, digging up old projects which do not work anymore due to "ignored sdkconfig.defaults": Don't forget, that in `.cargo/config.toml` one can set funny things, such...