This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

HALCoGen FEE driver: linux/unix filename issue (with workaround)

Other Parts Discussed in Thread: HALCOGEN

Using HALCoGen Version 4:

The FEE driver generates the following file:

./include/ti_fee_Cfg.h

In file fee_interface.h, also generated by the HALCoGEn FEE driver, we have the following include:

#include "ti_fee_cfg.h"

This creates an issue on linux and unix, because on these OS the file "ti_fee_cfg.h" is not the same as  "ti_fee_Cfg.h".

You can temporary solve that by renaming the file or changing the include, but a new code generation cycle from HALCoGen may create issues.

I have temporarily solved this by creating the following symbolic link in the include directory:

ln -s ti_fee_Cfg.h ti_fee_cfg.h


This is not an issue on Windows, where the filenames are not case sensitive.