1 /*
2  * Copyright (c) 2023 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 #ifndef _NRF_HW_MODELS_NHW_XPPI_H
7 #define _NRF_HW_MODELS_NHW_XPPI_H
8 
9 #include "NHW_config.h"
10 
11 #if (NHW_HAS_PPI)
12 #include "NRF_PPI.h"
13 #elif (NHW_HAS_DPPI)
14 #include "NHW_DPPI.h"
15 #endif
16 
17 #endif /* _NRF_HW_MODELS_NHW_XPPI_H */
18