Other Parts Discussed in Thread: SYSBIOS
Tool/software: TI-RTOS
I would like to try booting from the SD card as an alternative to loading code directly via CCS 8 using an XDS200 JTAG. From the vision_sdk\build directory, I executed the following commands, which appeared to build successfully (aside from the lack of UART output discussed in a related post):
Path=C:\ti\PROCESSOR_SDK_VISION_03_03_00_00\ti_components\os_tools\windows\xdctools_3_32_01_22_core;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;
gmake -s -j depend
gmake -s -j
Then I followed the instructions in the VisionSDK_UserGuide_TDA2xx.pdf section 3.5.3, and ran the command "gmake -s sbl". This resulted in numerous errors similar to the following:
c:\ti\PROCESSOR_SDK_VISION_03_03_00_00\vision_sdk\build>gmake -s sbl
# Compiling tda2px:a15_0:debug:csl_init: a15/src/csl_a15_init.asm
process_begin: CreateProcess(NULL, c:/ti/PROCESSOR_SDK_VISION_03_03_00_00/ti_components/cg_tools/windows/gcc-arm-none-eabi-4_9-2015q3/bin/arm-none-eabi-gcc -c -x assembler-with-cpp -DMAKEFILE_BUILD -Wimplicit -Wall -Wunused -Wunknown-pragmas -ffunction-sections -fdata-sections -c -mcpu=cortex-a15 -g -mfpu=neon -mfloat-abi=hard -mabi=aapcs -mapcs-frame -D__ARMv7 -Werror -D_DEBUG_=1 -DBUILD_A15_0 -DSOC_TDA2PX -Ic:/ti/PROCESSOR_SDK_VISION_03_03_00_00/ti_components/cg_tools/windows/gcc-arm-none-eabi-4_9-2015q3/arm-none-eabi/include -I. -Ia15/src -Ia15 -Ic:/ti/PROCESSOR_SDK_VISION_03_03_00_00/ti_components/drivers/pdk_01_09_00_17/packages -Ic:/ti/PROCESSOR_SDK_VISION_03_03_00_00/ti_components/drivers/pdk_01_09_00_17/packages/ti/csl -Ic:/ti/PROCESSOR_SDK_VISION_03_03_00_00/ti_components/drivers/pdk_01_09_00_17/packages/ti/csl -I/apps/apps_nonbam/inc -I/ -I/common -o c:/ti/PROCESSOR_SDK_VISION_03_03_00_00/vision_sdk/binaries/apps/tda2px_evm_bios_radar/ti/csl/arch/obj/tda2px/a15/debug/csl_a15_init.oa15fg a15/src/csl_a15_init.asm, ...) failed.
make (e=2): The system cannot find the file specified.
gmake[6]: *** [c:/ti/PROCESSOR_SDK_VISION_03_03_00_00/vision_sdk/binaries/apps/tda2px_evm_bios_radar/ti/csl/arch/obj/tda2px/a15/debug/csl_a15_init.oa15fg] Error 2
gmake[5]: *** [csl_init] Error 2
gmake[4]: *** [a15_0] Error 2
I'm not sure which file can not be found of the many paths listed above, or what should be done about it.
Thanks.