Closed SchrodingersGat closed 6 years ago
Version: 2.11.c
Here the functions (generated by Protogen) are failing because the structure definition for packet Servo_SetConfigBits_t
has not been defined anywhere...
Current workaround is to ensure that structureInterface
is set to true for affected packets. But this is not ideal.
I updated to logic that forces the structure declaration, version 2.11.d. Give that a try. If it doesn't solve it, then send me your protocol.xml file so I can debug more thoroughly.
That's done the trick! Thanks very much :)
MyPacket
which contains the variableMyStruct
. The packet is set to parameterInterface (but not structureInterface).MyStruct
contains variables that have initialValue or verifyMinValue or verifyMaxValue parametersMyPacket_t
structure is not definedMyPacket
(due to the inclusion ofMyStruct
)MyPacket_t
structI believe that if a packet contains any variables or structures that have initial or verify values, then the packet structure must be also defined, even if structureInterface is set to false.