NFC: System OFF¶
The NFC System OFF sample shows how to make the NFC Tag device wake up from the System OFF mode when it detects the NFC field. The sample uses the NFC Data Exchange Format (NDEF).
Overview¶
The sample starts with the initialization of the NFC Tag device. The device then attempts to detect an external NFC field. If the field is not detected within 3 seconds, the device goes into the System OFF mode.
The wake-up from the System OFF mode is done when an NFC field is detected. The system is started and the NFC Tag device is reinitialized. The tag can be read afterwards.
Once the NFC field is not within range anymore, the sample goes back to the System OFF mode.
Fully working NFC Tag is not a requirement for wake up by NFC field feature.
It is also possible to skip NFC Tag configuration and use NFCT peripheral registers directly.
In this case reader will not be able to read anything, but it will be able to wake up the system.
Following function shows how to do it.
It can be used instead of start_nfc()
function from the sample.
void field_sens_start(void)
{
int key = irq_lock();
/* First check if NFCT is not already sensing. */
if ((NRF_NFCT->NFCTAGSTATE & NFCT_NFCTAGSTATE_NFCTAGSTATE_Msk)
== NFCT_NFCTAGSTATE_NFCTAGSTATE_Disabled) {
NRF_NFCT->TASKS_SENSE = 1;
}
irq_unlock(key);
}
See the System OFF mode page in the nRF52840 Product Specification for more information.
Requirements¶
The sample supports the following development kits:
Hardware platforms |
PCA |
Board name |
Build target |
---|---|---|---|
PCA10095 |
|
||
PCA10056 |
|
||
PCA10040 |
|
The sample also requires a smartphone or tablet with the NFC feature.
User interface¶
- LED 1:
On when an NFC field is present within range.
- LED 2:
On when the system is on.
Building and running¶
This sample can be found under samples/nfc/system_off
in the nRF Connect SDK folder structure.
See Building and programming a sample application for information about how to build and program the application.
Testing¶
After programming the sample to your development kit, test it by performing the following steps:
Observe that LED 2 on the Tag device turns off after 3 seconds after the programming is complete. This indicates that the system is in the System OFF mode.
Make sure that the NFC feature is activated on the smartphone or tablet. Check the device documentation for information about how to enable the NFC feature.
With the smartphone or tablet, touch the NFC antenna on the NFC Tag device.
Observe that LED 2 on the Tag device is lit, followed by LED 1 shortly after that. Moreover, a
Hello World!
notification appears on the smartphone or tablet. The notification text is obtained from NFC.Move the smartphone or tablet away from the NFC antenna. LED 1 turns off.
Observe that LED 2 on the Tag device turns off after 3 seconds. This indicates that system is in the System OFF mode again.
Dependencies¶
This sample uses the following nRF Connect SDK libraries:
In addition, it uses the Type 2 Tag library from nrfxlib:
The sample uses the following Zephyr libraries:
include/zephyr.h
include/device.h
include/power/power.h