.. _ug_nrf52_features: Features of nRF52 Series ######################## .. contents:: :local: :depth: 2 The nRF52 Series of System-on-Chip (SoC) devices embed an Arm Cortex-M4 processor with Nordic Semiconductor's 2.4 GHz RF transceivers. All of the nRF52 Series SoCs have support for Bluetooth® 5 features, in addition to multiprotocol capabilities. For additional information, see the following documentation: * `nRF52 Series`_ for the technical documentation on the nRF52 Series chips and associated kits. * :ref:`ug_nrf52_gs`. * :ref:`ug_nrf52` for more advanced topics related to the nRF52 Series. * The :ref:`introductory documentation ` if you are not familiar with the |NCS| and the development environment. .. _nrf52_supported_boards: Supported boards **************** Devices in the nRF52 Series are supported by these boards in the Zephyr open source project and in |NCS|. .. list-table:: :header-rows: 1 * - DK - PCA number - Build target - Documentation * - :ref:`zephyr:nrf52840dk_nrf52840` - PCA10056 - ``nrf52840dk_nrf52840`` - | `Product Specification `_ | `User Guide `_ * - :ref:`zephyr:nrf52840dk_nrf52811` - PCA10056 - ``nrf52840dk_nrf52811`` - `Product Specification `_ * - :ref:`zephyr:nrf52833dk_nrf52833` - PCA10100 - ``nrf52833dk_nrf52833`` - | `Product Specification `_ | `User Guide `_ * - :ref:`zephyr:nrf52833dk_nrf52820` - PCA10100 - ``nrf52833dk_nrf52820`` - `Product Specification `_ * - :ref:`zephyr:nrf52dk_nrf52832` - PCA10040 - ``nrf52dk_nrf52832`` - | `Product Specification `_ | `User Guide `_ * - :ref:`zephyr:nrf52dk_nrf52810` - PCA10040 - ``nrf52dk_nrf52810`` - `Product Specification `_ * - :ref:`zephyr:nrf52dk_nrf52805` - PCA10040 - ``nrf52dk_nrf52805`` - `Product Specification `_ * - :ref:`zephyr:nrf52840dongle_nrf52840` - PCA10059 - ``nrf52840dongle_nrf52840`` - | `Product Specification `_ | `User Guide `_ * - :ref:`zephyr:nrf21540dk_nrf52840` - PCA10112 - ``nrf21540dk_nrf52840`` - `Product Specification `_ See :ref:`ug_radio_fem_nrf21540_ek` to learn how to use this RF front-end module (FEM) with the nRF52 Series devices. Secure bootloader chain *********************** nRF52 Series devices support a secure bootloader solution based on the chain of trust concept. See :ref:`ug_bootloader` for more information and instructions on how to enable one or more bootloaders in your application. Supported protocols ******************* The nRF52 Series multiprotocol radio supports Bluetooth Low Energy (LE), proprietary protocols (including Enhanced ShockBurst and Gazell), ANT, Thread, Zigbee, and 802.15.4. Standard interface protocols like NFC and USB are supported on a range of the devices in the series and with supporting software. .. note:: Currently, the |NCS| does not support ANT. The following sections give pointers on where to start when working with these protocols. To test the general capabilities of the 2.4 GHz radio transceiver, use the :ref:`radio_test` sample. Bluetooth Low Energy ==================== When you develop a Bluetooth LE application, you must use the Bluetooth software stack. This stack is split into two core components: the Bluetooth Host and the Bluetooth LE Controller. Nordic Semiconductor nRF52 Series devices have full support for the |NCS| Bluetooth stack. The :ref:`ug_ble_controller` user guide contains more information about the two available Bluetooth LE Controllers and instructions for switching between them. See :ref:`zephyr:bluetooth` for documentation on the Bluetooth Host and open source Bluetooth LE Controller. For documentation about the SoftDevice Controller and information on which controller variants support which chips, see :ref:`nrfxlib:softdevice_controller`. The |NCS| contains a variety of :ref:`ble_samples` that target nRF52 Series devices. In addition, you can run the :ref:`zephyr:bluetooth-samples` that are included from Zephyr. For available libraries, see :ref:`lib_bluetooth_services` (|NCS|) and :ref:`zephyr:bluetooth_api` (Zephyr). Bluetooth mesh ============== Bluetooth mesh is a mesh networking solution based on Bluetooth LE, developed by the Bluetooth Special Interest Group (SIG). It is optimized for creating large-scale device networks, and implemented according to Bluetooth Mesh Profile Specification v1.0.1 and Bluetooth Mesh Model Specification v1.0.1. Bluetooth mesh networking allows one-to-one, one-to-many, and many-to-many communication, using the Bluetooth LE protocol to exchange messages between the mesh nodes in the network. The |NCS| contains a variety of :ref:`Bluetooth mesh samples ` that target nRF52 Series devices. In addition, you can run the :ref:`Bluetooth mesh samples ` that are included from Zephyr. For available libraries, see :ref:`bt_mesh` (|NCS|) and :ref:`zephyr:bluetooth_mesh` (Zephyr). See the :ref:`ug_bt_mesh` user guide for information about how to use the supplied libraries and work with Bluetooth mesh. Enhanced ShockBurst =================== .. include:: ../../../nrf/ug_esb.rst :start-after: esb_intro_start :end-before: esb_intro_end See the :ref:`ug_esb` user guide for information about how to work with Enhanced ShockBurst. To start developing, check out the :ref:`esb_prx_ptx` sample. Gazell ====== .. include:: ../../../nrf/ug_gz.rst :start-after: gz_intro_start :end-before: gz_intro_end See the :ref:`ug_gzll` user guide and the :ref:`ug_gzp` user guide for information about how to work with Gazell. To start developing, check out the :ref:`gazell_samples`. Matter ====== .. include:: ../../../nrf/ug_matter.rst :start-after: matter_intro_start :end-before: matter_intro_end See the :ref:`ug_matter` user guide for information about how to work with Matter applications. To start developing, check out :ref:`matter_samples`. Near Field Communication ======================== Near Field Communication (NFC) is a technology for wireless transfer of small amounts of data between two devices that are in close proximity. The range of NFC is typically <10 cm. |NCS| provides two protocol stacks for developing NFC applications: Type 2 Tag and Type 4 Tag. These stacks are provided in binary format in the `sdk-nrfxlib`_ repository. See :ref:`nrfxlib:nfc` for documentation about the NFC stacks, and :ref:`ug_nfc` for general information. The NFC stack requires the NFCT driver for nRF52 devices, which is available as part of `nrfx`_. The nrfx repository is included in the |NCS| as a module of the Zephyr repository. See :ref:`nfc_samples` and :ref:`lib_nfc` for lists of samples and libraries that the |NCS| provides. USB === The |NCS| contains a USB device stack for the USB 2.0 Full Speed peripheral that is available on a number of the nRF52 devices. You can find the implementation in the Zephyr repository. See :ref:`zephyr:usb_api` for documentation and :ref:`zephyr:usb-samples` for a list of available samples. The USB stack requires the USBD driver for nRF52 devices, which is available as part of `nrfx`_. The nrfx repository is included in the |NCS| as a module of the Zephyr repository. Thread ====== .. include:: ../../../nrf/ug_thread.rst :start-after: thread_intro_start :end-before: thread_intro_end See the :ref:`ug_thread` user guide on how to work with Thread. To start developing, refer to the :ref:`openthread_samples`. Zigbee ====== .. include:: ../../../nrf/ug_zigbee.rst :start-after: zigbee_ug_intro_start :end-before: zigbee_ug_intro_end See the :ref:`Zigbee user guide ` on how to work with the Zigbee protocol and stack. To start developing, refer to the :ref:`zigbee_samples`. Multiprotocol support ********************* The nRF52 Series devices support running another protocol in parallel with the SoftDevice Controller. See the :ref:`ug_multiprotocol_support` user guide on how to enable multiprotocol support for Thread or Zigbee in combination with Bluetooth. The :ref:`nrfxlib:mpsl` library provides services for multiprotocol applications.