Hi All,
I'm attempting to figure out how to enable certain warnings/errors with CCEv3. Specifically, I want a warning/error if there is an implicit declaration of a function.
For example. A function I am trying to call simply doesn't exist. For example: I attempt a function call "write_flash_mem(...)", except it's actually "flash_write_mem(...)" I want the complier to scream at me that this function is implicitly declared, and not let the linker be the one to yell at me that there are unresolved symbols.
This goes hand in hand with my desire to have proper include files for future use/libraries/whatever.
Thanks.