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.

Compiler/TMS320F280049C: f28004x_device.h identifier "_Bool" is undefined

Part Number: TMS320F280049C

Tool/software: TI C/C++ Compiler

I have a fix by defining _Bool myself but I think I shouldn't have to so I'm just making this post to poke the devs to fix this in the c2000 libs.  I've added

#if defined(__cplusplus)
typedef bool _Bool;
#endif

to F28004x_device.h just above

typedef _Bool bool_t;