Hi,
I am trying to get familiarize with Vision SDK. I created a new usecase in path :~/VISION_SDK_02_12_00_00/vision_sdk$ ls examples/tda2xx/src/usecases/new_usecase/
created a chains_new_usecase.txt in that folder and the content of this files is
UseCase: new_usecase
Capture -> Alg_FrameCopy (A15) -> Display_Video
GrpxSrc -> Display_Grpx
the issued the command to generate .c and .h files
$INSTALL_DIR/vision_sdk/build/scripts/vsdk_linux.out -img -file chains_new_usecase.txt
Then created a SRC_FILES.MK in that folder with content
SRCDIR += $(vision_sdk_PATH)/examples/tda2xx/src/usecases/new_usecase
SRCS_$(IPU_PRIMARY_CORE) += \
chains_new_usecase.c \
chains_new_usecase_priv.c
Then include the project in examples Makefile like this
include $(MODULE_SRC_BASE_PATH)/usecases/new_usecase/SRC_FILES.MK
After than when i issue make -s -j command its showing error
tij6@tij6-desktop:~/VISION_SDK_02_12_00_00/vision_sdk$ make -s -j
Linux
make[4]: *** No rule to make target `chains_new_usecase.c', needed by `/home/tij6/VISION_SDK_02_12_00_00/vision_sdk/binaries/tda2xx_evm_linux_all/obj/vision_sdk_examples/tda2xx-evm/ipu2/release/chains_new_usecase.oem4'. Stop.
make[3]: *** [ipu2] Error 2
make[2]: *** [examples] Error 2
make[1]: *** [vision_sdk_examples] Error 2
make: *** [vision_sdk] Error 2
I just generated the files new_usecase_priv.h and new_usecase_priv.c didnt add any extra code any file. i created this with reference to vip_single_cam_frame_copy project