Other Parts Discussed in Thread: FFTLIB
Tool/software:
Hi TI,
I'm trying to create a project on CCS in order to test the FFT algorithm provided by TI in the fftlib folder.
For the moment, I've only done the bare minimum to check if the configuration is okay. Indeed, I added the paths required for the compiler and linker in the project properties, and I added the .lib libraries. Then, I tried to compile the project, which only contains the following main:
#include <fftlib.h> int main(void) { return 0; }
However, when I try to compile it, I get those issues :
>> Compilation failure subdir_rules.mk:9: recipe for target 'main.obj' failed "T:\Packages\ti-processor-sdk-rtos-j721e-evm-10_01_00_04\fftlib\src\common/FFTLIB_types.h", line 394: error #20: identifier "__HWA_CONFIG_REG_v1" is undefined "T:\Packages\ti-processor-sdk-rtos-j721e-evm-10_01_00_04\fftlib\src\common/FFTLIB_types.h", line 396: error #20: identifier "__HWA_CONFIG_REG_v1" is undefined "T:\Packages\ti-processor-sdk-rtos-j721e-evm-10_01_00_04\fftlib\src\common/FFTLIB_types.h", line 397: error #20: identifier "__HWA_CONFIG_REG_v1" is undefined "T:\Packages\ti-processor-sdk-rtos-j721e-evm-10_01_00_04\fftlib\src\common/FFTLIB_types.h", line 398: error #20: identifier "__HWA_CONFIG_REG_v1" is undefined "T:\Packages\ti-processor-sdk-rtos-j721e-evm-10_01_00_04\fftlib\src\common/FFTLIB_types.h", line 399: error #20: identifier "__HWA_CONFIG_REG_v1" is undefined "T:\Packages\ti-processor-sdk-rtos-j721e-evm-10_01_00_04\fftlib\src\common/FFTLIB_types.h", line 401: error #20: identifier "__HWA_CONFIG_REG_v1" is undefined "T:\Packages\ti-processor-sdk-rtos-j721e-evm-10_01_00_04\fftlib\src\common/FFTLIB_types.h", line 402: error #20: identifier "__HWA_CONFIG_REG_v1" is undefined "T:\Packages\ti-processor-sdk-rtos-j721e-evm-10_01_00_04\fftlib\src\common/FFTLIB_types.h", line 403: error #20: identifier "__HWA_CONFIG_REG_v1" is undefined "T:\Packages\ti-processor-sdk-rtos-j721e-evm-10_01_00_04\fftlib\src\common/FFTLIB_types.h", line 404: error #20: identifier "__HWA_CONFIG_REG_v1" is undefined "T:\Packages\ti-processor-sdk-rtos-j721e-evm-10_01_00_04\fftlib\src\common/FFTLIB_types.h", line 406: error #20: identifier "__HWA_OFFSET_REG" is undefined "T:\Packages\ti-processor-sdk-rtos-j721e-evm-10_01_00_04\fftlib\src\common/FFTLIB_types.h", line 407: error #20: identifier "__HWA_OFFSET_REG" is undefined "T:\Packages\ti-processor-sdk-rtos-j721e-evm-10_01_00_04\fftlib\src\common/FFTLIB_types.h", line 408: error #20: identifier "__HWA_OFFSET_REG" is undefined "T:\Packages\ti-processor-sdk-rtos-j721e-evm-10_01_00_04\fftlib\src\common/FFTLIB_types.h", line 409: error #20: identifier "__HWA_OFFSET_REG" is undefined
Could someone help me with that ?
Regards,
Mélanie