CONFIG_PAYLOAD_EX
This structure defines the payload configuration including mass, center of gravity, and transition parameters.
BYTE# |
Field Name |
Data Type |
Value |
Remarks |
|---|---|---|---|---|
0 |
|
|
Payload mass (kg) |
|
4 |
|
|
Center of gravity position (X, Y, Z) |
|
16 |
|
|
COG reference frame |
|
18 |
|
|
Add-up flag |
|
20 |
|
|
Start time (sec) |
|
24 |
|
|
Transition time (sec) |
|
28 |
|
|
Reserved for future use |
Total size: 60 bytes
Defined in: DRFS.h
typedef struct _CONFIG_PAYLOAD_EX
{
/* mass(kg) */
float _fWeight;
/* center of mass */
float _fXYZ[3];
/* COG Reference */
unsigned short _iCogReference;
/* Add Up */
unsigned short _iAddUp;
/* timing parameters */
float _fStartTime;
float _fTransitionTime;
/* reserved */
unsigned char _iReserved[32];
} CONFIG_PAYLOAD_EX, *LPCONFIG_PAYLOAD_EX;