From df6ad4b4d0291bc73211ebcb220f19ab3e2f9971 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Wed, 20 Oct 2021 11:34:00 +0200 Subject: [PATCH 1/2] boards/nrf52840dk: periph_conf.h: include "kernel_defines.h" --- boards/nrf52840dk/include/periph_conf.h | 1 + 1 file changed, 1 insertion(+) diff --git a/boards/nrf52840dk/include/periph_conf.h b/boards/nrf52840dk/include/periph_conf.h index 936e2fcc97..b615b9030c 100644 --- a/boards/nrf52840dk/include/periph_conf.h +++ b/boards/nrf52840dk/include/periph_conf.h @@ -20,6 +20,7 @@ #ifndef PERIPH_CONF_H #define PERIPH_CONF_H +#include "kernel_defines.h" #include "periph_conf_common.h" #ifdef __cplusplus From 5e52a0ea4c30b3d5bee38c278b321169cf021ec3 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Wed, 20 Oct 2021 11:34:39 +0200 Subject: [PATCH 2/2] cpu/nrf5x_common: nrfx.h: add missing "kernel_defines.h" include --- cpu/nrf5x_common/include/nrfx.h | 1 + 1 file changed, 1 insertion(+) diff --git a/cpu/nrf5x_common/include/nrfx.h b/cpu/nrf5x_common/include/nrfx.h index 1edb426cf7..fcd137d9e8 100644 --- a/cpu/nrf5x_common/include/nrfx.h +++ b/cpu/nrf5x_common/include/nrfx.h @@ -22,6 +22,7 @@ #ifndef NRFX_H #define NRFX_H +#include "kernel_defines.h" #include "cpu_conf.h" #include "periph_conf.h"