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.

TDA4VM-Q1: Building New Code Using SDK Concerto System

Part Number: TDA4VM-Q1

Hi, 

I have an example code that I added in the SDK vision apps folder. In this new subdirectory, I added a generic concerto.mak and my source code. however when I build using "make vision_apps" my added code is not compiled. How can I add my code and build it using the SDK?   

concerto.mak:

include $(PRELUDE)

TARGET      := vx_app_demo_walkthrough
TARGETTYPE  := exe
CSOURCES    := main.c

include $(FINALE)

  • Hi,

    Please refer the concerto.mak for apps/basic_demos/app_vx_tutorial 

    Could you add the below lines too in your concerto file to mention the target cpu and target os

    ifeq ($(TARGET_CPU),A72)
    ifeq ($(TARGET_OS), $(filter $(TARGET_OS), LINUX QNX))

    Regards,
    Nikhil