Hi,
after a Reload of my project, I see that the AIF2 Rx PKTDMA is still running.
My Project is based on the LTE example and running on C6670.
How can I fully reset and stop AIF2 and its PKDMA.
On each Reload I switch of Reset Isolation and I switch off and on Powerdomain of AIF2.
// Reset isolation
CSL_PSC_disableModuleResetIsolation( CSL_PSC_LPSC_AI );
// Power Domain off
CSL_PSC_disablePowerDomain (CSL_PSC_PD_AI);
// Clock domain off
CSL_PSC_setModuleNextState (CSL_PSC_LPSC_AI, PSC_MODSTATE_DISABLE);
CSL_PSC_startStateTransition (CSL_PSC_PD_AI);
// Power domain on
CSL_PSC_enablePowerDomain (CSL_PSC_PD_AI);
// Clock domain on
CSL_PSC_setModuleNextState (CSL_PSC_LPSC_AI, PSC_MODSTATE_ENABLE);
CSL_PSC_startStateTransition (CSL_PSC_PD_AI);
What else is nesccessary ?
Thanks a lot
Matthias