I am forced to use TestStand 2010 so this may have been resolved in a future release.
In my Variables section, I can create the structure which looks like this (all variables are unsigned 32 bit)
Frame Data
MinorTimeStamp
StartOfFrame
Header (array 0-5)
PayLoadSize
PayLoad (array 0-549)
CRC
EndOfFrame
When I attempt to create the same structure as a Custom Data Type, Testand forces all of the arrays to the top of the structure.
Frame Data
Header (array 0-5)
PayLoad (array 0-549)
MinorTimeStamp
StartOfFrame
PayLoadSize
CRC
EndOfFrame
Is there a way to tell TestStand that I know what I am doing and to leave my structure alone?
Thank you