Other Parts Discussed in Thread: MMWAVEICBOOST, , SYSBIOS
***Problem***
I am trying to create a starting IT-RTOS project on the IWR6843 connected to the MMWAVEICBOOST development board.
I get the following error:
undefined first referenced
symbol in file
--------- ----------------
ti_sysbios_family_c64p_Cache_l1dSize /home/user/tirtos_workspace/starting_iwr_c67xx/src/sysbios/sysbios.ae674<BIOS.obj>
ti_sysbios_family_c64p_Cache_l1pSize /home/user/tirtos_workspace/starting_iwr_c67xx/src/sysbios/sysbios.ae674<BIOS.obj>
ti_sysbios_family_c64p_Cache_l2Size /home/user/tirtos_workspace/starting_iwr_c67xx/src/sysbios/sysbios.ae674<BIOS.obj>
error #10234-D: unresolved symbols remain
error #10010: errors encountered during linking; "starting_iwr_c67xx.out" not built
--------------------------------------------------------------------------------------------------------------------------------------
***Configuration***
I created the project using TI CCS New Project Wizard. I selected New TI RTOS Project -> Typical. I configured it as such:
Cortex R4F:
target: ti.targets.arm.elf.R4Ft
platform: ti.platforms.cortexR:IWR68XX:false:200
profile: release
XDC Options:
--xdcpath="/home/user/ti/bios_6_76_03_01/packages;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.R4Ft -p ti.targets.cortexR:IWR68XX:false:200 -r release -c "/home/user/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS" --compileOptions "-g"
ARM Compiler Options:
-mv7R4 --code_state=32 --float_support=VFPv3D16 --include_path="/home/user/tirtos_workspace/starting_iwr_r4f" --include_path="/home/user/ti/bios_6_76_03_01/packages/ti/posix/ccs" --include_path="/home/user/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi
ARM Linker Options:
-mv7R4 --code_state=32 --float_support=VFPv3D16 -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi -z -m"stupid_iwr_r4f.map" --heap_size=0x800 --stack_size=0x800 -i"/home/user/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/lib" -i"/home/user/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include" --reread_libs --diag_wrap=off --display_error_number --warn_sections --xml_link_info="starting_iwr_r4f_linkInfo.xml" --rom_model --be32
DSP:
target: ti.targets.elf.C674
platform: ti.platforms.c6x:IWR68XX:false:600
profile: release
XDC Options:
--xdcpath="/home/user/ti/bios_6_76_03_01/packages;" xdc.tools.configuro -o configPkg -t ti.targets.elf.C674 -p ti.platforms.c6x:IWR68XX:false:600 -r release -c "/home/user/ti/ccs930/ccs/tools/compiler/ti-cgt-c6000_8.3.12" --compileOptions "-g"
DSP Compiler Options:
-mv6740 --include_path="/home/user/tirtos_workspace/starting_iwr_c67xx" --include_path="/home/user/ti/bios_6_76_03_01/packages/ti/posix/ccs" --include_path="/home/user/ti/ccs930/ccs/tools/compiler/ti-cgt-c6000_8.3.12/include" -g --diag_warning=225 --diag_wrap=off --display_error_number
DSP Linker Options:
-mv6740 -g --diag_warning=225 --diag_wrap=off --display_error_number -z -m"stupid_iwr_c67xx.map" --heap_size=0x800 --stack_size=0x800 -i"/home/user/ti/ccs930/ccs/tools/compiler/ti-cgt-c6000_8.3.12/lib" -i"/home/user/ti/ccs930/ccs/tools/compiler/ti-cgt-c6000_8.3.12/include" --reread_libs --diag_wrap=off --display_error_number --warn_sections --xml_link_info="starting_iwr_c67xx_linkInfo.xml" --rom_model
-----------------------------
How can I resolve this error?