I have developed an application in that I need to reset MCU from software.
So from PSoC4, I know that we have a function for soft reset.
Do we have the same kind of function for resetting only CM0p core, not CM4?
How to do reset to CM0p core?
Solved! Go to Solution.
Only CM0p core can't be reset.
Soft reset System reset by calling NVIC_SystemReset() from CM0p core.
Soft reset only CM4 reset by calling __NVIC_SystemReset() from CM4 core.
Only CM0p core can't be reset.
Soft reset System reset by calling NVIC_SystemReset() from CM0p core.
Soft reset only CM4 reset by calling __NVIC_SystemReset() from CM4 core.