In some case sd_nvic_SystemReset() can not reset? nrf51822 S110.
for example: void main(void) { sd_nvic_SystemReset(); do something; } It can do somthing!! So sd_nvic_SystemReset() must after doing something?
In some case sd_nvic_SystemReset() can not reset? nrf51822 S110.
for example: void main(void) { sd_nvic_SystemReset(); do something; } It can do somthing!! So sd_nvic_SystemReset() must after doing something?
As Wojtek is pointing out, you have to enable the SoftDevice before calling sd_nvic_SystemReset()
.Are you doing this?
As Wojtek is pointing out, you have to enable the SoftDevice before calling sd_nvic_SystemReset()
.Are you doing this?