3.11.4 tmcTypes_ABC_s Struct
C
/* Structure representing ABC phase quantities: Floating point version
typedef struct
{
float32_t a; /* Phase A quantity */
float32_t b; /* Phase B quantity */
float32_t c; /* Phase C quantity */
}tmcTypes_ABC_s;
/* Structure representing ABC phase quantities: Fixed point version */
typedef struct
{
int16_t a; /* Phase A quantity */
int16_t b; /* Phase B quantity */
int16_t c; /* Phase C quantity */
} tmcTypes_ABC_s;
Summary
Structure representing ABC phase quantities.
Description
This structure is used to represent three-phase electrical quantities, such as current and voltage.
Remarks
Refer the generated header file for the exact typedef signature.
