Henrik Böving

Results 73 comments of Henrik Böving

I don't really like the high level traits here to be honest, for example the power trait. ```rs /// This device can be powered on and off pub trait PowerManagedDevice...

There is also this https://github.com/jonas-schievink/spi-memory which might be a good playground to try some approaches

For generating from yaml files I'd like to point at https://github.com/google/cyanobyte, as of now the "standard" they have is just I2C but since the file format is essentially only a...

It would also be pretty cool if we could have a separation of registers and protocols used to control said registers, for example OpenBSD has an IC directory containing register...

As it seems like the acivity on this issue regarding new features we'd like to have has stopped for now. What I get from this is that there is definitely...

I was working with an st-link v2 + another variant of the H743 (mine is a H743ZIT6) but your variant looks at least closely related for me, maybe the stlink...

Just as a side note, since the f3 BSP crate is said to be unmaintained by now I will look into writing the majority of things with just the stm32f3...

As per #263 and a rust embedded wg meeting we have come to the conclusion that the rewrite for this book will be done using the micro:bit. Until chapter 6...

No, semihosting allows the target MCU to perform I/O using the host computer.

No what the statemt means is that the microcontroller can use the IO capabilities of the host which is basically always just the host's `printf` so you can have debug...