Skip to content

Commit a7641b1

Browse files
committed
mpsl: Temporary fix to make 54l15/ns functionaly work
Temporary fix that will force rramc to not go to powerdown. Mpsl gets to high interupt latency without this and stops working. Signed-off-by: Martin Tverdal <martin.tverdal@nordicsemi.no>
1 parent 0c899be commit a7641b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

subsys/mpsl/init/mpsl_init.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -446,9 +446,9 @@ static int32_t mpsl_lib_init_internal(void)
446446
*/
447447
uint32_t result_out;
448448
uint32_t result = tfm_platform_mem_write32((uint32_t)&NRF_RRAMC_S->POWER.LOWPOWERCONFIG,
449-
RRAMC_POWER_LOWPOWERCONFIG_MODE_Standby << RRAMC_POWER_LOWPOWERCONFIG_MODE_Pos,
450-
RRAMC_POWER_LOWPOWERCONFIG_MODE_Msk,
451-
&result_out);
449+
RRAMC_POWER_LOWPOWERCONFIG_MODE_Standby << RRAMC_POWER_LOWPOWERCONFIG_MODE_Pos,
450+
RRAMC_POWER_LOWPOWERCONFIG_MODE_Msk,
451+
&result_out);
452452
__ASSERT(result == TFM_PLATFORM_ERR_SUCCESS, "tfm_platform_mem_write32 failed %i\n", result);
453453
__ASSERT(result_out == 0, "tfm_platform_mem_write32 failed %i\n", result_out);
454454
#endif

0 commit comments

Comments
 (0)