Skip to content

Commit 4ff510a

Browse files
maje-embrlubos
authored andcommitted
samples: radio_test: Add workaround for MLTPAN-39
Added workaround for MLTPAN-39 on nRF54LM20A SoC. Ref: NCSDK-34621 Signed-off-by: Marcin Jelinski <[email protected]>
1 parent a47113d commit 4ff510a

File tree

1 file changed

+8
-0
lines changed
  • samples/peripheral/radio_test/src

1 file changed

+8
-0
lines changed

samples/peripheral/radio_test/src/main.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
#if NRF54L_ERRATA_20_PRESENT
1818
#include <hal/nrf_power.h>
1919
#endif /* NRF54L_ERRATA_20_PRESENT */
20+
#if defined(NRF54LM20A_ENGA_XXAA)
21+
#include <hal/nrf_clock.h>
22+
#endif /* defined(NRF54LM20A_ENGA_XXAA) */
2023

2124
/* Empty trim value */
2225
#define TRIM_VALUE_EMPTY 0xFFFFFFFF
@@ -57,6 +60,11 @@ static void clock_init(void)
5760
}
5861
#endif /* NRF54L_ERRATA_20_PRESENT */
5962

63+
#if defined(NRF54LM20A_ENGA_XXAA)
64+
/* MLTPAN-39 */
65+
nrf_clock_task_trigger(NRF_CLOCK, NRF_CLOCK_TASK_PLLSTART);
66+
#endif /* defined(NRF54LM20A_ENGA_XXAA) */
67+
6068
printk("Clock has started\n");
6169
}
6270

0 commit comments

Comments
 (0)