Hi,
It confused me about the xdc_UInt16 and xdc_UInt32 defines
in "std.h"
typedef unsigned short xdc_UInt16;
typedef unsigned int xdc_UInt32;
But for F28x, unsigned int is a 16bits word, and unsigned long is 32bits, just like defined in "DSP280x_Device.h"
in "DSP280x_Device.h"
typedef unsigned int Uint16;
typedef unsigned long Uint32;
Here is my question: is xdc_UInt32 a 16bits word even for F28x device ? Or there have some configuration to solve this conflict ?
thanks