Tool/software: Linux
Hi.
I'm working on porting TIDL_OD Usecase to Linux + BIOS using TDA2xx EVM.
I think the porting operation is almost finished, but the following errors occur during the execution.
// Alg_tidlpreproc status = System_linkCreate(pObj->Alg_tidlpreprocLinkID, &pObj->Alg_tidlpreprocPrm, sizeof(pObj->Alg_tidlpreprocPrm)); UTILS_assert(status == SYSTEM_LINK_STATUS_SOK);
ASSERT (chains_dl_od_priv.c|chains_dl_od_Create|542)
ALG: ERROR: No alg create function specified (algId = 12) !!!
I found the ALG_ID 12 is tidl_preproc. (TIDL_Preproc(A15))
I searched the forum and checked the file in "/src/common/app_init/app_init_a15.c", but it was found.
#include <system_cfg.h>
#include <src/rtos/utils_common/include/utils.h>
#include <include/link_api/system_common.h>
/*******************************************************************************
* Function prototypes
*******************************************************************************
*/
#ifdef ALG_framecopy
Int32 AlgorithmLink_FrameCopy_initPlugin(void);
#endif
#ifdef ALG_safe_framecopy
Int32 AlgorithmLink_SafeFrameCopy_initPlugin(void);
#endif
#ifdef ALG_objectdetection
Int32 AlgorithmLink_objectDraw_initPlugin(void);
#endif
#ifdef ALG_tidl
Int32 AlgorithmLink_tidlpreproc_initPlugin(void);
Int32 AlgorithmLink_tidlpostproc_initPlugin(Void);
#endif
/**
*******************************************************************************
*
* \brief Application init
*
*******************************************************************************
*/
void App_init(void)
{
/* Algorithms plug in init */
#ifdef ALG_framecopy
AlgorithmLink_FrameCopy_initPlugin();
#endif
#ifdef ALG_safe_framecopy
AlgorithmLink_SafeFrameCopy_initPlugin();
#endif
#ifdef ALG_objectdetection
AlgorithmLink_objectDraw_initPlugin();
#endif
#ifdef ALG_tidl
AlgorithmLink_tidlpreproc_initPlugin();
AlgorithmLink_tidlpostproc_initPlugin();
#endif
}
/**
*******************************************************************************
*
* \brief Application deinit
*
*******************************************************************************
*/
void App_deInit(void)
{
/* Algorithms plug in deinit */
}
/* Nothing beyond this point */
How can i fix this error?