Hello,
I have a trouble handling new chip nRF52832 I recently changed.
what I previously used is nRF51822, and there wasn't that kind of problem.
I'm using my custom board, Softdevice version is nRF52_6.1.0.
for the test, I compiled and uploaded ble_app_uart example project to MCU,
but it doesn't work properly, it seems quiet regularly reset itself, the interval is about 3-5minute.
I found the way how to get reset reason from other questions,
uint32_t reset = nrf_power_resetreas_get();
NRF_LOG_INFO("reset : 0x%x", reset);
sd_power_reset_reason_clr(reset));
then, it returns like this,
0> <info> app: reset : 0x10000
According to nRF52832 product specification, 16th bit of RESETREAS register means
Reset due to wake up from System OFF mode when wakeup is triggered from DETECT signal from GPIO
but I don't get what are these stuff meaning like, System Off mode, Detect signal.
please let me know what should I do.
thank you.