From 1b9220993fb5cfd093a2ac953dd9da3578f9c78f Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 10 Dec 2025 19:02:36 +0100 Subject: tiny improvements for nrf docs --- embassy-nrf/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/embassy-nrf/src/lib.rs b/embassy-nrf/src/lib.rs index 2f5ad352f..5d9f0e463 100644 --- a/embassy-nrf/src/lib.rs +++ b/embassy-nrf/src/lib.rs @@ -798,9 +798,9 @@ pub fn init(config: config::Config) -> Peripherals { // Chips with a certain chip type-specific build code or higher have an // improved APPROTECT ("hardware and software controlled access port protection") // which needs explicit action by the firmware to keep it unlocked - // See https://devzone.nordicsemi.com/nordic/nordic-blog/b/blog/posts/working-with-the-nrf52-series-improved-approtect + // See https://docs.nordicsemi.com/bundle/ps_nrf52840/page/dif.html#d402e184 - // UICR.APPROTECT = SwDisabled + // UICR.APPROTECT = HwDisabled let res = uicr_write(consts::UICR_APPROTECT, consts::APPROTECT_DISABLED); needs_reset |= res == WriteResult::Written; // APPROTECT.DISABLE = SwDisabled -- cgit