From fa66984c2bdbe43fa4d7c7bd9fd2c903e6721f92 Mon Sep 17 00:00:00 2001 From: Carles Cufi Date: Tue, 28 Jan 2025 20:14:41 +0100 Subject: [PATCH] scripts: runners: nrf: Add UICR ranges for nRF54L These are used to detect if the firmware image contains any values inside the UICR for additional handling. Signed-off-by: Carles Cufi --- scripts/west_commands/runners/nrf_common.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/west_commands/runners/nrf_common.py b/scripts/west_commands/runners/nrf_common.py index b02c5b3ad5f..e6576ca2455 100644 --- a/scripts/west_commands/runners/nrf_common.py +++ b/scripts/west_commands/runners/nrf_common.py @@ -40,6 +40,9 @@ UICR_RANGES = { 'Application': (0x0FFF8000, 0x0FFF8800), 'Network': (0x0FFFA000, 0x0FFFA800), }, + 'nrf54l': { + 'Application': (0x00FFD000, 0x00FFDA00), + }, 'nrf91': { 'Application': (0x00FF8000, 0x00FF8800), },