123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #ifndef NRF_GZLL_RESOURCES_H__
- #define NRF_GZLL_RESOURCES_H__
- #include <stdint.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifndef GAZELL_ALTERNATIVE_RESOURCES
- #define GZLL_PPI_CHANNELS_USED 0x00000007uL
- #define GZLL_TIMERS_USED 0x00000004uL
- #define GZLL_SWI_USED 0x00000001uL
- #else
- #define GZLL_PPI_CHANNELS_USED 0x00000700uL
- #define GZLL_TIMERS_USED 0x00000001uL
- #define GZLL_SWI_USED 0x00000002uL
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
|