nrf_esb_resources.h 1.1 KB

123456789101112131415161718192021222324252627282930
  1. /* Copyright (c) 2015 Nordic Semiconductor. All Rights Reserved.
  2. *
  3. * The information contained herein is property of Nordic Semiconductor ASA.
  4. * Terms and conditions of usage are described in detail in NORDIC
  5. * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
  6. *
  7. * Licensees are granted free, non-transferable use of the information. NO
  8. * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
  9. * the file.
  10. *
  11. */
  12. #ifndef NRF_ESB_RESOURCES_H__
  13. #define NRF_ESB_RESOURCES_H__
  14. #include <stdint.h>
  15. #ifndef ESB_ALTERNATIVE_RESOURCES
  16. #define ESB_PPI_CHANNELS_USED 0x00000007uL /**< PPI channels utilized by ESB (not available to th spplication). */
  17. #define ESB_TIMERS_USED 0x00000004uL /**< Timers used by ESB. */
  18. #define ESB_SWI_USED 0x00000001uL /**< Software interrupts used by ESB */
  19. #else
  20. #define ESB_PPI_CHANNELS_USED 0x00000700uL /**< PPI channels utilized by ESB (not available to th spplication). */
  21. #define ESB_TIMERS_USED 0x00000001uL /**< Timers used by ESB. */
  22. #define ESB_SWI_USED 0x00000002uL /**< Software interrupts used by ESB */
  23. #endif
  24. #endif /* NRF_ESB_RESOURCES_H__ */