Hi, Sir
Excuse me, when I use the encoder lib : C66x_j2e_01_00_00_01_ELF, I have some question about the *.cfg file in the App.
After import the project in App, build completely. There build a *_pe66.c file from the *.cfg file. I find the following codes in *_pe66.c.
"
#define TCI6608
#include <ti/sdo/fc/edma3/edma3lld_cfg.h>
/* Configuration defined in edma3lld_cfg.h */
extern __FAR__ EDMA3_GblConfigParams
ti_sdo_fc_edma3_lld_globalConfigParams[GLOBAL_EDMA3_INSTANCES];
/* Set globalConfig to array declared above */
EDMA3_GblConfigParams * ti_sdo_fc_edma3_Settings_globalConfig =
(Void *)&ti_sdo_fc_edma3_lld_globalConfigParams;
/* Configuration defined in edma3lld_cfg.h */
extern __FAR__ EDMA3_InstanceInitConfig
ti_sdo_fc_edma3_lld_instInitConfig[GLOBAL_EDMA3_INSTANCES][NUM_REGION];
/* Set regionConfig to array declared above */
EDMA3_InstanceInitConfig * ti_sdo_fc_edma3_Settings_regionConfig =
&ti_sdo_fc_edma3_lld_instInitConfig[0][0];
"
When I rewrite the content in the cfg file of my new project(I make the new cfg file according to the *.cfg file in App), but my *_pe66.c only have:
"
EDMA3_GblConfigParams * ti_sdo_fc_edma3_Settings_globalConfig = NULL;
EDMA3_InstanceInitConfig * ti_sdo_fc_edma3_Settings_regionConfig = NULL;
"
Could you please tell me, how can I make my the *_pe66.c has the same content like the one from the App lib?
what's the key point in the *.cfg file?