Skip to content

Commit f354363

Browse files
ankunsrlubos
authored andcommitted
fem_al: adjust for nrf54l
Call to `nrf_radio_fast_ramp_up_check` replaced the call to `nrf_radio_modecnf0_ru_get`. Signed-off-by: Andrzej Kuros <[email protected]>
1 parent a209c36 commit f354363

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/fem_al/fem_al.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ uint32_t fem_radio_rx_ramp_up_delay_get(bool fast, nrf_radio_mode_t mode)
162162

163163
uint32_t fem_default_ramp_up_time_get(bool rx, nrf_radio_mode_t mode)
164164
{
165-
bool fast_ramp_up = nrf_radio_modecnf0_ru_get(NRF_RADIO);
165+
bool fast_ramp_up = nrf_radio_fast_ramp_up_check(NRF_RADIO);
166166

167167
return rx ? fem_radio_rx_ramp_up_delay_get(fast_ramp_up, mode) :
168168
fem_radio_tx_ramp_up_delay_get(fast_ramp_up, mode);

0 commit comments

Comments
 (0)