Hi there,
I use pragmas for assinging variables to data sections and recently realised that `_Pragma()` would be more standards compliant than `#pragma `.
However, after reading the TI advice on `_pragma` usage at http://processors.wiki.ti.com/index.php/Pragmas_You_Can_Understand I'm not sure I've correctly understood their use with regard to the string literal operand.
Would the following be correct in C on C2000?
static struct FOO_Obj foo = {0U};
#ifndef TEST
_Pragma ("DATA_SECTION (foo, \"FOO_Section\")");
#endif
Thanks, T