From 6b51531432deb8b551aa5054730291e2a82bb650 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Hj=C3=A4rtquist?= Date: Fri, 11 Aug 2023 15:59:29 +0200 Subject: [PATCH] porting/npl/freertos: Add way of including HW specific header --- porting/npl/freertos/src/npl_os_freertos.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/porting/npl/freertos/src/npl_os_freertos.c b/porting/npl/freertos/src/npl_os_freertos.c index ecc5cd7b1..eeebe9fd7 100644 --- a/porting/npl/freertos/src/npl_os_freertos.c +++ b/porting/npl/freertos/src/npl_os_freertos.c @@ -22,6 +22,10 @@ #include #include "nimble/nimble_npl.h" +#ifdef NIMBLE_NPL_OS_EXTRA_INCLUDE +#include NIMBLE_NPL_OS_EXTRA_INCLUDE +#endif + static inline bool in_isr(void) {