Skip to content

Commit 309dbb5

Browse files
ankunsnordicjm
authored andcommitted
mpsl: fem: enable simple_gpio for nRF54L series
The `simple_gpio` Front-End Module is enabled for nRF54L Series devices. Signed-off-by: Andrzej Kuros <[email protected]>
1 parent 0c55efd commit 309dbb5

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

subsys/mpsl/fem/simple_gpio/mpsl_fem_simple_gpio.c

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,10 @@ static int fem_simple_gpio_configure(void)
7373
},
7474
.enable = true,
7575
.active_high = MPSL_FEM_GPIO_POLARITY_GET(ctx_gpios),
76-
.gpiote_ch_id = ctx_gpiote_channel
76+
.gpiote_ch_id = ctx_gpiote_channel,
77+
#if defined(NRF54L_SERIES)
78+
.p_gpiote = ctx_gpiote.p_reg,
79+
#endif
7780
#else
7881
MPSL_FEM_DISABLED_GPIOTE_PIN_CONFIG_INIT
7982
#endif
@@ -87,7 +90,10 @@ static int fem_simple_gpio_configure(void)
8790
},
8891
.enable = true,
8992
.active_high = MPSL_FEM_GPIO_POLARITY_GET(crx_gpios),
90-
.gpiote_ch_id = crx_gpiote_channel
93+
.gpiote_ch_id = crx_gpiote_channel,
94+
#if defined(NRF54L_SERIES)
95+
.p_gpiote = crx_gpiote.p_reg,
96+
#endif
9197
#else
9298
MPSL_FEM_DISABLED_GPIOTE_PIN_CONFIG_INIT
9399
#endif

0 commit comments

Comments
 (0)