Fábián Varga
Fábián Varga
I'd recommend changing the first if-statement in `install_qemu` to something like ``` if [[ ${OS} != "linux-amd64" && ${OS} != "macos" ]]; then echo "error: QEMU for ESP32 does not...
Are there any updates on this issue? I can confirm that I'm also unable to boot anything newer than Big Sur on 7945HX. Interestingly, if I try this under an...
I personally needed to implement a way to get access to a GPIO pin by it's number, like in C/C++ you can just `#define SOME_PIN 55`. Only solution I could...
> every gpio label implements the pin trait. With that you can ask the thing you have via the pin() method to get the associated pin number. You can always...
Thanks! I'm guessing there's no way to rename the asset, right? Your suggestion worked, but it would be nice to be able to add the target triple to the binary...
I ran into the same issue. Turns out, my `.cargo/config.toml` was also forcing `ovmf-prebuilt` to be built for the `x86_64-unknown-none` target. I fixed it by moving the `[build]` section to...