Hello,
I am using CCS 3.3.83.19 for the TMS320F38035. I am instancing the ti CLARKE function as CLARKE clarke1 = CLARKE_DEFAULTS.
clarke1.As and clarke1.Bs are members of this structure
This function works fine, but I am trying to create a table of addresses elsewhere in my code. The code is as follows:
extern _iq clarke1;
const Uint32 TxData[] =
{
(Uint32)&clarke1.As,
(Unint32)&clarke1.Bs
};
I get a compile error : expression must have struct or union type
Can you help me witht the proper syntax to get the address of a member of a structure.?