F280023是支持fpu32的吧?那为啥float32这个类型没有像F28335/F28379D那样定义呢?我自己加一个上去行不行?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

早f28002x_device.h文件中,缺少float32和float64的定义,这是为什么呢?我还以为不支持float32呢
定义位置不同吧,在hw_types.h中有定义:
#ifdef __TI_EABI__
typedef float float32_t;
typedef double float64_t;
#else // TI COFF
typedef float float32_t;
typedef long double float64_t;