Markus Reiter

Results 208 comments of Markus Reiter

Yes, it should work with `delegate_to`. I was using it to set up Talos VMs on each of my Proxmox hosts in that way. I'll try to rebase this hopefully...

@ls-initiatives, should be good to try now.

My Legrand KEOR PDU 800 is also working (reporting values) with @blecher-at's updated branch.

For macOS, I have [a step in my `dotfiles` repo](https://github.com/reitermarkus/dotfiles/blob/349cf6c0aff2ab8666247904779b788a14b99fa0/.github/workflows/ci.yml#L39-L190) which removes (or at least tries to) remove all preinstalled software. In my case it's more about having a clean...

I also have this issue trying to deploy a Rust function to IBM Cloud. Similarly to @atamgp, I have a `data "archive_file"` which fails with ``` grpc: received message larger...

@ivmarkov, I changed the enums to use newtypes instead of Rust enums. This doesn't have the problem with UB. This of course get's rid of the benefit of having exhaustiveness...

> Constified "enums" Constified enums are what is currently in this crate. You are talking about constified enum modules. This PR switches to newtype enums, which uses associated constants on...

FWIW, I would like to use actual meaningful types when possible rather than raw byte arrays. > I'll likely have to introduce a hard dependency on heapless in order to...

I implemented this in my own version before this crate existed: https://github.com/reitermarkus/esp32-hello/blob/4babc77e0a91ff38440b26821624d010bd609285/esp-idf-hal/src/wifi/password.rs

> And then the question becomes, why are you reinventing the wheel? You are suggesting that having dependencies is a bad thing, so I assumed you wanted to reinvent the...