File tree 4 files changed +28
-1
lines changed
lib/nRF5340_CPUNET/soft-float
4 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 6
6
7
7
config GZLL
8
8
bool "Enable Gazell Link Layer"
9
- depends on SOC_SERIES_NRF52X
9
+ depends on SOC_SERIES_NRF52X || SOC_SERIES_NRF53X
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ extern "C" {
42
42
/*
43
43
* PPI configuration
44
44
*/
45
+ #if defined(PPI_PRESENT ) || defined(DOXYGEN )
45
46
#define NRF_GZLL_PPI_EEP0 (*nrf_gzll_ppi_eep0) ///< Gazell PPI event endpoint 0
46
47
#define NRF_GZLL_PPI_TEP0 (*nrf_gzll_ppi_tep0) ///< Gazell PPI task endpoint 0
47
48
#define NRF_GZLL_PPI_EEP1 (*nrf_gzll_ppi_eep1) ///< Gazell PPI event endpoint 1
@@ -51,6 +52,16 @@ extern "C" {
51
52
52
53
#define NRF_GZLL_PPI_CHEN_MSK_0_AND_1 (nrf_gzll_ppi_chen_msk_0_and_1) ///< Channel enable/disable mask for PPI endpoint 0 and 1.
53
54
#define NRF_GZLL_PPI_CHEN_MSK_2 (nrf_gzll_ppi_chen_msk_2) ///< Channel enable/disable mask for PPI endpoint 2.
55
+ #endif
56
+
57
+ #if defined(DPPI_PRESENT ) || defined(DOXYGEN )
58
+ #define NRF_GZLL_DPPI_CH0 (nrf_gzll_dppi_ch0) ///< Gazell DPPI channel 0
59
+ #define NRF_GZLL_DPPI_CH1 (nrf_gzll_dppi_ch1) ///< Gazell DPPI channel 1
60
+ #define NRF_GZLL_DPPI_CH2 (nrf_gzll_dppi_ch2) ///< Gazell DPPI channel 2
61
+
62
+ #define NRF_GZLL_DPPI_CHEN_MSK_0_AND_1 (nrf_gzll_dppi_chen_msk_0_and_1) ///< Channel enable/disable mask for DPPI channel 0 and 1.
63
+ #define NRF_GZLL_DPPI_CHEN_MSK_2 (nrf_gzll_dppi_chen_msk_2) ///< Channel enable/disable mask for DPPI channel 2.
64
+ #endif
54
65
/** @} */
55
66
56
67
/*****************************************************************************/
Original file line number Diff line number Diff line change 15
15
*/
16
16
17
17
#include <nrf.h>
18
+ #include <nrf_peripherals.h>
18
19
19
20
#ifdef __cplusplus
20
21
extern "C" {
@@ -38,6 +39,7 @@ extern IRQn_Type const nrf_gzll_timer_irqn;
38
39
/** Interrupt number for the software interrupt. */
39
40
extern IRQn_Type const nrf_gzll_swi_irqn ;
40
41
42
+ #if defined(PPI_PRESENT ) || defined(DOXYGEN )
41
43
/** Gazell PPI event endpoint 0 register address. */
42
44
extern __IOM uint32_t * nrf_gzll_ppi_eep0 ;
43
45
/** Gazell PPI task endpoint 0 register address. */
@@ -54,6 +56,20 @@ extern __IOM uint32_t * nrf_gzll_ppi_tep2;
54
56
extern uint32_t nrf_gzll_ppi_chen_msk_0_and_1 ;
55
57
/** Channel enable/disable mask for PPI endpoint 2. */
56
58
extern uint32_t nrf_gzll_ppi_chen_msk_2 ;
59
+ #endif
60
+
61
+ #if defined(DPPI_PRESENT ) || defined(DOXYGEN )
62
+ /** Gazell DPPI channel index 0. */
63
+ extern uint8_t nrf_gzll_dppi_ch0 ;
64
+ /** Gazell DPPI channel index 1. */
65
+ extern uint8_t nrf_gzll_dppi_ch1 ;
66
+ /** Gazell DPPI channel index 2. */
67
+ extern uint8_t nrf_gzll_dppi_ch2 ;
68
+ /** Channel enable/disable mask for DPPI channel 0 and 1. */
69
+ extern uint32_t nrf_gzll_dppi_chen_msk_0_and_1 ;
70
+ /** Channel enable/disable mask for DPPI channel 2. */
71
+ extern uint32_t nrf_gzll_dppi_chen_msk_2 ;
72
+ #endif
57
73
58
74
59
75
/**
You can’t perform that action at this time.
0 commit comments