Skip to content

Commit

Permalink
samples: esb: Fix corrupted transmitted data in 4Mbit radio mode
Browse files Browse the repository at this point in the history
Fixed data corruption issue in 4Mbit radio mode on nRF54H20 SoC.

Ref: NCSDK-31399

Signed-off-by: Marcin Jelinski <[email protected]>
  • Loading branch information
maje-emb authored and rlubos committed Feb 18, 2025
1 parent edb907c commit 080349a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 2 additions & 4 deletions samples/esb/esb_prx/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,8 @@ int clocks_start(void)
}
} while (err == -EAGAIN);

#if defined(NRF54L15_XXAA)
/* MLTPAN-20 */
nrf_clock_task_trigger(NRF_CLOCK, NRF_CLOCK_TASK_PLLSTART);
#endif /* defined(NRF54L15_XXAA) */
nrf_lrcconf_clock_always_run_force_set(NRF_LRCCONF000, 0, true);
nrf_lrcconf_task_trigger(NRF_LRCCONF000, NRF_LRCCONF_TASK_CLKSTART_0);

LOG_DBG("HF clock started");

Expand Down
6 changes: 2 additions & 4 deletions samples/esb/esb_ptx/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,8 @@ int clocks_start(void)
}
} while (err == -EAGAIN);

#if defined(NRF54L15_XXAA)
/* MLTPAN-20 */
nrf_clock_task_trigger(NRF_CLOCK, NRF_CLOCK_TASK_PLLSTART);
#endif /* defined(NRF54L15_XXAA) */
nrf_lrcconf_clock_always_run_force_set(NRF_LRCCONF000, 0, true);
nrf_lrcconf_task_trigger(NRF_LRCCONF000, NRF_LRCCONF_TASK_CLKSTART_0);

LOG_DBG("HF clock started");
return 0;
Expand Down

0 comments on commit 080349a

Please sign in to comment.