• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H06-Aug-2018-6,7132,540

drivers/H06-Aug-2018-20,44511,361

hal/H06-Aug-2018-18,4778,490

mdk/H06-Aug-2018-214,509186,674

soc/H06-Aug-2018-856325

templates/H06-Aug-2018-9,8082,736

.gitignoreH A D06-Aug-201833 32

CHANGELOG.mdH A D06-Aug-20183.8 KiB8471

LICENSEH A D06-Aug-20181.5 KiB3023

README.mdH A D06-Aug-20181.1 KiB3828

nrfx.hH A D06-Aug-20181.7 KiB417

README.md

1# nrfx
2
3## Overview
4
5nrfx is an extract from the nRF5 SDK that contains solely the drivers for
6peripherals present in Nordic SoCs, for convenience complemented with the MDK
7package containing required structures and bitfields definitions, startup
8files etc.
9
10## Supported SoCs
11
12* nRF51 Series
13* nRF52810
14* nRF52832
15* nRF52840
16
17## Directories
18
19```
20 .
21 ├── doc             # Project documentation files
22 ├── drivers         # nrfx drivers files
23 │   └── include     # nrfx drivers headers
24 │   └── src         # nrfx drivers sources
25 ├── hal             # Hardware Access Layer files
26 ├── mdk             # Nordic MDK files
27 ├── soc             # Nordic SoC related files
28 └── templates       # Templates of nrfx integration files
29```
30
31## Generating documentation
32
33nrfx documentation is availabe in the `doc\html` folder of the release package.
34
35You can also generate documentation yourself from the source code. To do it, install doxygen
36and run one of the scripts: `generate_html_doc.bat` or `generate_html_doc.sh`. Generated
37documentation will be stored in the `doc\html` directory. Use `index.html` to open it.
38