Hi, there is an existing C/C++ project, it could be complied and builed by lauching a bat file(eg. build_cpu1.bat) in the Windows CMD.
Now I am trying to add DSP/BIOS features such as LOG/RTDX to this existing project according to http://focus.ti.com/lit/ug/spru423h/spru423h.pdf, for example,
====CReceiver.cpp===
#include <tcf_file>cfg.h
..
LOG_print(&trace, "hello");
==================
However, when I am trying to build the project by launching the bat file (eg. build_cpu1.bat) in CCSv4, setting the build property's build command as :.\build_cpu1.bat
it tells,
line 51: fatal error: could not open source file "<tcf_file>cfg.h"
How shall I correctly configure the build environment? Is there any reference here?
Br,
Applecat