nrf_gzll_resources.h 1.2 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_GZLL_RESOURCES_H__
  13. #define NRF_GZLL_RESOURCES_H__
  14. #include <stdint.h>
  15. #ifndef GAZELL_ALTERNATIVE_RESOURCES
  16. #define GZLL_PPI_CHANNELS_USED 0x00000007uL /**< PPI channels utilized by Gazell (not available to th spplication). */
  17. #define GZLL_TIMERS_USED 0x00000004uL /**< Timers used by Gazell. */
  18. #define GZLL_SWI_USED 0x00000001uL /**< Software interrupts used by Gazell */
  19. #else
  20. #define GZLL_PPI_CHANNELS_USED 0x00000700uL /**< PPI channels utilized by Gazell (not available to th spplication). */
  21. #define GZLL_TIMERS_USED 0x00000001uL /**< Timers used by Gazell. */
  22. #define GZLL_SWI_USED 0x00000002uL /**< Software interrupts used by Gazell */
  23. #endif
  24. #endif /* NRF_GZLL_RESOURCES_H__ */