cmsis replacements: Fix for other Zephyr bsim targets

Let's not filter the integrator include based on the specific
board but by the series.

Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
This commit is contained in:
Alberto Escolar Piedras 2023-09-12 13:56:16 +02:00
parent 8316930e41
commit b6c27693af
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
#ifndef HW_MODELS_CORE_CM4_H
#define HW_MODELS_CORE_CM4_H
#if defined(CONFIG_BOARD_NRF52_BSIM) || defined(INTEGRATOR_PROVIDES_CMSIS)
#if defined(CONFIG_SOC_SERIES_BSIM_NRFXX) || defined(INTEGRATOR_PROVIDES_CMSIS)
/* The real core_cm4.h includes a very significant number of definitions
* and further CMSIS includes. Which may be needed by the integrating program.
* We provide this include as a means to allow the integrating to add those.