1 /* 2 * Copyright (c) 2024 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause 5 */ 6 7 /** 8 * @file Module that defines the peripherals used by the nRF 802.15.4 SL. 9 * 10 */ 11 12 #ifndef NRF_802154_SL_PERIPHS_H__ 13 #define NRF_802154_SL_PERIPHS_H__ 14 15 #include <nrfx.h> 16 17 #if NRF_802154_USE_INTERNAL_INCLUDES 18 #include "nrf_802154_sl_periphs_internal.h" 19 #endif 20 21 #define NRF_802154_SL_PPI_CHANNELS_USED_MASK 0U 22 #define NRF_802154_SL_PPI_GROUPS_USED_MASK 0U 23 #define NRF_802154_SL_EGU_USED_CHANNELS_MASK 0U 24 25 #endif // NRF_802154_SL_PERIPHS_H__ 26