Matt Ickstadt

Results 67 comments of Matt Ickstadt

I can do this once I'm done with https://github.com/PistonDevelopers/hematite/pull/260. If I'm understanding correctly, the first part works already e.g. `hematite Test` loads the map named Test from the minecraftdir. It...

I'll do this once I'm done with #203 :laughing:

Could you provide a backtrace using a debug build? (i.e. no `--release`) It'll be quite slow but we should be able to see what line it's panicking on then.

I've been working on this a bit: https://github.com/mattico/hematite/tree/add-app-structure Still needs some refinement.

The conclusion from #149 is that this should wait until embedded-time is more mature and adopted by the community.

`embedded-time` is used as the core of [RTIC 0.6's new monotonic timers](https://github.com/rtic-rs/cortex-m-rtic/pull/436).

I've [done some work](https://github.com/mattico/stm32-rs/tree/update-stm32h7) to update to the new SVDs. The good news is that they seem significantly improved over the previous terrible ones. The bad news is that we'll...

I am 👍 on this because I end up switching pins between pull-up and pull-down in certain situations and having the typestate makes this very annoying.

Currently, no. The foundation of the SDMMC driver is the `cmd` function which blocks waiting for the SDMMC interface to be idle, sends the command, then blocks waiting for the...

@David-OConnor neat, I'm glad someone is working on a cross-stm32 HAL (besides [embassy](https://github.com/embassy-rs/embassy)). It seemed silly to duplicate all this work when the STM32 chips are similar enough that a...