Skip to content

Commit 1a67a05

Browse files
committed
nrf_802154: rev c50013d7baef93669a74e3fc12f66782cc5ba64a
This commit updates revision of the nrf_802154 component. Signed-off-by: Andrzej Kuros <[email protected]>
1 parent 837f9c0 commit 1a67a05

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

nrf_802154/driver/src/nrf_802154_trx.c

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@
7272
#define EGU_SYNC_TASK NRFX_CONCAT_2(NRF_EGU_TASK_TRIGGER, NRF_802154_EGU_SYNC_CHANNEL_NO)
7373
#define EGU_SYNC_INTMASK NRFX_CONCAT_2(NRF_EGU_INT_TRIGGERED, NRF_802154_EGU_SYNC_CHANNEL_NO)
7474

75+
#define RADIO_BASE ((uintptr_t)NRF_RADIO)
76+
7577
#if defined(DPPI_PRESENT)
76-
#define RADIO_BASE NRF_RADIO_NS_BASE
7778
#define FICR_BASE NRF_FICR_NS_BASE
7879
#else
7980
#define PPI_CCAIDLE_FEM NRF_802154_PPI_RADIO_CCAIDLE_TO_FEM_GPIOTE ///< PPI that connects RADIO CCAIDLE event with GPIOTE tasks used by FEM
8081
#define PPI_CHGRP_ABORT NRF_802154_PPI_ABORT_GROUP ///< PPI group used to disable PPIs when async event aborting radio operation is propagated through the system
81-
#define RADIO_BASE NRF_RADIO_BASE
8282
#endif
8383

8484
#define SHORT_ADDRESS_BCSTART NRF_RADIO_SHORT_ADDRESS_BCSTART_MASK
@@ -886,6 +886,11 @@ void nrf_802154_trx_enable(void)
886886

887887
nrf_radio_mode_set(NRF_RADIO, NRF_RADIO_MODE_IEEE802154_250KBIT);
888888

889+
#if defined(NRF54L_SERIES) && !defined(CONFIG_SOC_SERIES_BSIM_NRFXX)
890+
// Apply MLTPAN-6
891+
*(volatile uint32_t *)(RADIO_BASE + 0x810UL) = 2;
892+
#endif
893+
889894
#if defined(NRF5340_XXAA) && !defined(CONFIG_SOC_SERIES_BSIM_NRFXX)
890895
// Apply ERRATA-117 after setting RADIO mode to NRF_RADIO_MODE_IEEE802154_250KBIT.
891896
errata_117_apply();

0 commit comments

Comments
 (0)