This is an automated email from Gerrit.

"Tomas Vanek <van...@fbl.cz>" just uploaded a new patch set to Gerrit, which 
you can find at https://review.openocd.org/c/openocd/+/8103

-- gerrit

commit 8e4c61bf2bc34aab2f973d68b31e59be0b0cd97f
Author: Tomas Vanek <van...@fbl.cz>
Date:   Sun Jan 21 15:55:37 2024 +0100

    flash/nor/nrf5, target/nrf51: deprecate nrf51 flash driver
    
    Use the newer driver name 'nrf5' instead.
    
    While on it set the unused parameters of flash bank
    creation to zero.
    
    While on it remove 2 empty comments.
    
    Change-Id: I9cf0eadc5b696e6c8b7e6aec0ea3345967523e87
    Signed-off-by: Tomas Vanek <van...@fbl.cz>

diff --git a/src/flash/nor/nrf5.c b/src/flash/nor/nrf5.c
index 001843d39e..18efae5c6d 100644
--- a/src/flash/nor/nrf5.c
+++ b/src/flash/nor/nrf5.c
@@ -1144,6 +1144,9 @@ FLASH_BANK_COMMAND_HANDLER(nrf5_flash_bank_command)
        struct nrf5_info *chip;
        struct nrf5_bank *nbank = NULL;
 
+       if (bank->driver == &nrf51_flash)
+               LOG_WARNING("Flash driver 'nrf51' is deprecated! Use 'nrf5' 
instead.");
+
        switch (bank->base) {
        case NRF5_FLASH_BASE:
        case NRF5_UICR_BASE:
diff --git a/tcl/target/nrf51.cfg b/tcl/target/nrf51.cfg
index 48c2715d10..53ac3069fb 100644
--- a/tcl/target/nrf51.cfg
+++ b/tcl/target/nrf51.cfg
@@ -45,13 +45,11 @@ if {![using_hla]} {
    cortex_m reset_config sysresetreq
 }
 
-flash bank $_CHIPNAME.flash nrf51 0x00000000 0 1 1 $_TARGETNAME
-flash bank $_CHIPNAME.uicr nrf51 0x10001000 0 1 1 $_TARGETNAME
+flash bank $_CHIPNAME.flash nrf5 0x00000000 0 0 0 $_TARGETNAME
+flash bank $_CHIPNAME.uicr nrf5 0x10001000 0 0 0 $_TARGETNAME
 
-#
 #  The chip should start up from internal 16Mhz RC, so setting adapter
 #  clock to 1Mhz should be OK
-#
 adapter speed 1000
 
 proc enable_all_ram {} {

-- 

Reply via email to