Scott Mabin
Scott Mabin
I've opened https://github.com/probe-rs/probe-rs/issues/896 :)
Thank you @Tiwalun & @noppej for all your hard work on this! It's very pleasant to use probe-rs on RISCV cores now :)
> @faern I have tried to create such branch but got stuck on `write!(..)` calls to mutable slice like [this one](https://github.com/rust-lang/rust/blob/affe0d3a00e92fa7885e3f5d2c5073fde432d154/library/std/src/net/ip.rs#L1003). AFAIK they are not supported in `core`: > >...
Thanks for the pointers! For HAL peripheral implementations I also saw the `Unborrow` trait used sporadically, I understand what it's doing but I don't know why it's needed? Could you...
This is awesome! Thanks @osobiehl, I'll take a in-depth look soon! > Interrupts are handled differently on the ESP32C3 board, I'm not sure if the same interrupt controller is used...
I've just opened #804 based on your work @osobiehl, thank you for laying the groundwork! I've also been working on the `esp-hal` side, including a SystemTimer implementation in https://github.com/esp-rs/esp-hal/pull/76. My...
I'm pretty sure those are the chip families for the f4, as in the f4 hal crate there are more devices than there are listed in in the stm32-rs crate....
Awesome! If you've got any questions you can normally find me in #rust-embedded on irc.mozilla.org
TIL that `core::time::Duration` exists... Seems like using `core::time::Duration` pulls in 64 bit machinery which is a bit meh. I'm not that against it though. Alternatively, a `Microsecond` type backed by...
Perhaps a somewhat odd but simple strategy, what about setting the flash size to the addressable per chip and then letting the flashing step detect the failures? E.g for the...