No description
Find a file
2020-02-05 09:22:33 -05:00
doc merge v2.1.0 from upstream, preserving idempotent uninint()'s 2020-02-05 09:22:33 -05:00
drivers merge v2.1.0 from upstream, preserving idempotent uninint()'s 2020-02-05 09:22:33 -05:00
hal merge v2.1.0 from upstream, preserving idempotent uninint()'s 2020-02-05 09:22:33 -05:00
helpers merge v2.1.0 from upstream, preserving idempotent uninint()'s 2020-02-05 09:22:33 -05:00
mdk merge v2.1.0 from upstream, preserving idempotent uninint()'s 2020-02-05 09:22:33 -05:00
soc merge v2.1.0 from upstream, preserving idempotent uninint()'s 2020-02-05 09:22:33 -05:00
templates merge v2.1.0 from upstream, preserving idempotent uninint()'s 2020-02-05 09:22:33 -05:00
.gitignore nrfx 0.7.0 release 2017-10-24 11:07:28 +02:00
CHANGELOG.md merge v2.1.0 from upstream, preserving idempotent uninint()'s 2020-02-05 09:22:33 -05:00
LICENSE merge v2.1.0 from upstream, preserving idempotent uninint()'s 2020-02-05 09:22:33 -05:00
nrfx.h merge v2.1.0 from upstream, preserving idempotent uninint()'s 2020-02-05 09:22:33 -05:00
README.md nrfx 2.0.0 release 2019-11-06 17:09:54 +01:00

nrfx

Overview

nrfx is a standalone set of drivers for peripherals present in Nordic Semiconductor's SoCs. It originated as an extract from the nRF5 SDK. The intention was to provide drivers that can be used in various environments without the necessity to integrate other parts of the SDK into them. For the user's convenience, the drivers come with the MDK package. This package contains definitions of register structures and bitfields for all supported SoCs, as well as startup and initialization files for them.

Supported SoCs

  • nRF51 Series
  • nRF52810
  • nRF52811
  • nRF52832
  • nRF52833
  • nRF52840
  • nRF5340
  • nRF9160

Directories

 .
 ├── doc             # Project documentation files
 ├── drivers         # nrfx driver files
 │   └── include     # nrfx driver headers
 │   └── src         # nrfx driver sources
 ├── hal             # Hardware Access Layer files
 ├── helpers         # nrfx driver helper files
 ├── mdk             # nRF MDK files
 ├── soc             # SoC specific files
 └── templates       # Templates of nrfx integration files

Generating documentation

nrfx documentation is available in the doc\html folder of the release package.

You can also generate documentation yourself from the source code. To do it, install doxygen and run one of the scripts: generate_html_doc.bat or generate_html_doc.sh. Generated documentation will be stored in the doc\html directory. Use index.html to open it.