Tool/software: TI C/C++ Compiler
HI Champ,
For example I have below structure variable define, after compiling , there just has gMotorVars addess in the map file, does it possible to generate all the variable address with in this structure like gMotorVars.Rr_Ohm and gMotorVars.Lsd_H in .map or in .out file?
typedef struct _MOTOR_Vars_t_
{
float_t MagnCurr_A;
float_t Rr_Ohm;
float_t Rs_Ohm;
float_t RsOnLine_Ohm;
float_t Lsd_H;
float_t Lsq_H;
float_t Flux_VpHz;
}MOTOR_Vars_t;
volatile MOTOR_Vars_t gMotorVars;