Alan Everett

Results 49 comments of Alan Everett

`ledPWMFrequency` is not currently parsed by PV, and `ledPWMRange` defaults to `[0, 100]`. It seems like `ledPWMFrequency` was forgotten in the documentation and the LL2+ config after #127 removed the...

I originally decided on the name `IxD` to match the style of `Ix0`, `Ix1`, etc..., but with a generic `D` instead of a fixed value. It is also short, which...

With my most recent updates, I believe all static-related simplification that can be done within the current Rust feature set is implemented. This can be revisited in the future once...

I added some basic tests for the new initializers. The other changes should all be covered by the existing tests since they were just implementation refactorings.

I was having some problems with getting `rust-analyzer` in VS Code on my system to correctly see the new test file, but it seems to be picked up by command...

Yeah, I had concerns about the name too. This is not adding a distinct type, only an additional alias, so `Ix2` and `IxD` are already the same type. This just...

I suppose underlying the exact methodology, I am seeking a way to access arbitrary diagonal elements of an unknown statically-dimensioned ndarray. I was doing this with a combination of `IxD::repeating(i:...

Actually, I missed that basic arrays already implement `IntoDimension`, which might suit my needs.

Seems like that does work; I think I tried that before, but was missing a trait constraint in my generalized code.