Tool/software: TI C/C++ Compiler
Hi, I keep getting this error. I included the files below but am still receiving this error. Thanks!
#include <stdbool.h>
#include <stdint.h>
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.
The type name uint32_t is defined in <stdint.h>. That is similar to uint32, but not the same. Either change to uint32_t, or search through your header files to find the one you forgot to #include.
Thanks and regards,
-George