Other Parts Discussed in Thread: TMS320C28346
I have a .c file in which I define, let's say :
#define EXPORT_H
then I include a .h file :
#include "test.h"
If I try to use this predefine for something in the included .h file, like:
#if defined(EXPORT_H)
I never get the expression to be true. The only way I can solve this is including a predefine in project option in the respective .c file ...
Am I doing something wrong ?