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

nRF5340 DK

PCA10095

nrf5340dk_nrf5340

nrf5340dk_nrf5340_cpuapp

nrf5340dk_nrf5340_cpuapp_ns

nRF52840 DK

PCA10056

nrf52840dk_nrf52840

nrf52840dk_nrf52840

nRF52 DK

PCA10040

nrf52dk_nrf52832

nrf52dk_nrf52832

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 an 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:

  1. 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.

  2. 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.

  3. With the smartphone or tablet, touch the NFC antenna on the NFC Tag device.

  4. 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.

  5. Move the smartphone or tablet away from the NFC antenna. LED 1 turns off.

  6. 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 sdk-nrfxlib:

The sample uses the following Zephyr libraries:

  • include/zephyr.h

  • include/device.h

  • include/power/power.h

  • GPIO Interface