Part Number: TMS320F28388D
Other Parts Discussed in Thread: C2000WARE, TMS320F280025C
in our projectspec file, <pathVariable name="C2000WARE_DLIB_ROOT" path="../../../../../../driverlib/f2838x/driverlib/" scope="project" />
this means we have to put our project files in example directory.
but I want to put any directory, I tried:
<pathVariable name="C2000WARE_DLIB_ROOT" path="${COM_TI_C2000WARE_SOFTWARE_PACKAGE_INSTALL_DIR}/driverlib/f2838x/driverlib/" scope="project" />
but it does not work, ccs does not know COM_TI_C2000WARE_SOFTWARE_PACKAGE_INSTALL_DIR.
I have to add a pathVariable which path is absolute path, then it works.
<pathVariable name="c200ware_dir" path="/opt/ti/c2000/C2000Ware_3_04_00_00" scope="project" />
<pathVariable name="C2000WARE_DLIB_ROOT" path="${c200ware_dir}/driverlib/f2838x/driverlib/" scope="project" />
however, our group members use linux or windows ccs, so ccs and c2000ware have different path, and we may use different c2000ware version. so we can not use absolute path.
I wonder why I can not use internal environment variables.
do I have another way to do this?