Hi All,is it possible for the compiler to generate an error/warning if a parameter to a function is not a static (or global). I.E. if it is stored on the stack.e.g.
extern void func( uint16_t *val );
static uint16_t stored_in_memory;
..