You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Ken 22abc7086e Initial commit 4 years ago
..
doc Initial commit 4 years ago
drivers Initial commit 4 years ago
hal Initial commit 4 years ago
mdk Initial commit 4 years ago
soc Initial commit 4 years ago
templates Initial commit 4 years ago
.gitignore Initial commit 4 years ago
CHANGELOG.md Initial commit 4 years ago
LICENSE Initial commit 4 years ago
README.md Initial commit 4 years ago
nrfx.h Initial commit 4 years ago

README.md

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
  • nRF52840
  • nRF9160

Directories

 .
 ├── doc             # Project documentation files
 ├── drivers         # nrfx drivers files
 │   └── include     # nrfx drivers headers
 │   └── src         # nrfx drivers sources
 ├── hal             # Hardware Access Layer files
 ├── mdk             # Nordic MDK files
 ├── soc             # Nordic SoC related 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.