Skip to content

Commit d513c49

Browse files
committed
cmake/sysbuild/partition_manager: correct nRF54L bl_storage UICR.OTP size
Size reserved for bl_storage OTP should be 320 words. Signed-off-by: Andrzej Puzdrowski <[email protected]>
1 parent 598cb8c commit d513c49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/sysbuild/partition_manager.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ foreach(d APP ${PM_DOMAINS})
531531
if(DEFINED ${image_name}_CONFIG_SOC_SERIES_NRF54LX)
532532
set(otp_start_addr "0xffd500")
533533
# 320 UICR words, minus 32 user-reserved words
534-
set(otp_size 1148) # (319 - 32) * 4
534+
set(otp_size 1152) # (320 - 32) * 4
535535
endif()
536536
endif()
537537

0 commit comments

Comments
 (0)