[C-Generator] generates incorrect value initializers for actor attributes with a data classes as type
The C-code generator generates incorrect initializers for actor attributes with data classes as type.
It always applies the default values from the data class instead of the init values specified within the actor class.
```room
RoomModel Dummy {
import etrice.api.types.*
DataClass DDummy {
Attribute one: uint16 = "5" // these values (or the types default value) will override any local init value specified in an actor
Attribute two: uint16
}
ActorClass ADummy {
Structure {
Attribute dummy: DDummy = "{1,2}" // These values will not be applied in the instance file
}
}
}
```
issue