ext: hal: nordic: nrfx: Add nRF52810 configuration

nrfx requires specific chip configuration for each IC. Those are not
upstream in the nrfx repository, but rather part of the Zephyr nrfx
port. Add a configuration for the nRF52810.

Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
Signed-off-by: Ioannis Glaropoulos <ioannis.glaropoulos@nordicsemi.no>
This commit is contained in:
Carles Cufi 2018-05-25 13:11:06 +02:00 committed by Carles Cufí
parent 0cac36303b
commit f0df45dd5b
3 changed files with 2104 additions and 0 deletions

View File

@ -12,6 +12,7 @@ if(CONFIG_HAS_NRFX)
zephyr_include_directories(.)
zephyr_sources_ifdef(CONFIG_SOC_SERIES_NRF51X nrfx/mdk/system_nrf51.c)
zephyr_sources_ifdef(CONFIG_SOC_NRF52810 nrfx/mdk/system_nrf52810.c)
zephyr_sources_ifdef(CONFIG_SOC_NRF52832 nrfx/mdk/system_nrf52.c)
zephyr_sources_ifdef(CONFIG_SOC_NRF52840 nrfx/mdk/system_nrf52840.c)

View File

@ -35,6 +35,8 @@
#if defined(NRF51)
#include <nrfx_config_nrf51.h>
#elif defined(NRF52810_XXAA)
#include <nrfx_config_nrf52810.h>
#elif defined(NRF52832_XXAA) || defined (NRF52832_XXAB)
#include <nrfx_config_nrf52832.h>
#elif defined(NRF52840_XXAA)

File diff suppressed because it is too large Load Diff