justinbalexander
justinbalexander
Hey Mark, as stated in the readme, I wrote only enough to translate the specific svd file I needed so I know there are plenty of valid svd fields that...
I also find these very confusing. I would definitely like to see more examples in the documentation.
Workaround from a project of mine. I think designated initializers are already rejected as a feature. ```zig const initial_settings = init: { var array = [_]InitialPinSettings{.{}} ** Pin.max_value; array[@enumToInt(Pin.LCD_NRESET)] =...
I understand what you meant. Does the compile time init of the array meet the needs of your specific use case? It's a bit verbose in my opinion, but it...