hi....
i am using nrf52832 and peripheral device , microcontroller should run continuously , nrf should be in turn off mode and it should turn on when the data need to send in(ble app)
how to do this ?
hi....
i am using nrf52832 and peripheral device , microcontroller should run continuously , nrf should be in turn off mode and it should turn on when the data need to send in(ble app)
how to do this ?
Hi,
The nRF52 series have two sleep modes; system on and system off sleep mode. In System off, the system can only wake up from GPIO event, NFCT field, analog event from LPCOMP, or a reset. It sounds like this mode is not suitable for your requirements? In system on mode, the CPU can wakeup on any event from any peripheral, and is used in almost every example in the SDK (by calling __WFE() or sd_app_evt_wait()).
Best regards,
Jørgen