Thanks, I just ported over to using this Prefix file method as it was getting to messy.
Would be nice if the IDE was aware of this, the IDE is unaware of definitions in this file so its also quite useless. Any idea how to get the IDE to be aware of the prefix file?
If I do something like this in the prefix file
#define _TEST_
Then in my code
#ifdef _TEST_
#warning TEST
#endif
This entire statement is in gray as the IDE is not aware of _TEST_ being defined, yet it highlights the #warning as something is aware the #warning statement is there...