Tool/software:
Hi there,
I am having some problems with this function:
int32_t SOC_moduleClockEnable(uint32_t moduleId, uint32_t enable);
After soc initialization, I can download gpio example program toggling an LED. It works. This is our own prototype board.
However, I then download an application that has more modules.
int32_t SOC_moduleClockEnable(uint32_t moduleId, uint32_t enable); fails for each module, I worked around the assert by changing the return value in debug mode in CCS to iterate all modules.
Here are my modules:
uint32_t gSocModules[] = {
TISCI_DEV_FSS0,
TISCI_DEV_FSS0_FSAS_0,
TISCI_DEV_FSS0_OSPI_0,
TISCI_DEV_PRU_ICSSG1,
TISCI_DEV_UART2,
SOC_MODULES_END,
};
how to debug the problem?
Best regards,
Jinlong