Hi,
While using CCS I've ran into path issues for include files. Although originally I used Environment Variables to solve this, the issue is that the environment variable is relative.
http://processors.wiki.ti.com/index.php/Portable_Projects
This means that I have to add every combination possible to the includes to ensure all header files are found.
I recently stumbled upon project_loc, which allows me to create a path that is relative to the project's location on compile time. For example:
"${project_loc}:/../DemoCode"
My question is, are there any unexpected issues with this? Why has this not been used in the tutorials since it seems to simplify the includes significantly?
Regards,
Gustavo