From: OpenOCD-Gerrit <ope...@us...> - 2021-12-03 21:54:06
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via bbe8b0df176a12ca1248134ee26ca13d61903094 (commit) via 21d11f13ec533dab4d810ba631bb860768ee2cee (commit) from c07e4b37829067a872e2a52f9a490bd8903e66da (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit bbe8b0df176a12ca1248134ee26ca13d61903094 Author: Tomas Vanek <va...@fb...> Date: Sat Nov 20 17:07:31 2021 +0100 doc: fix list of supported nRF52 devices Change-Id: I64d6d851dd9333689556b7062b1ff38d41b5ad32 Signed-off-by: Tomas Vanek <va...@fb...> Reviewed-on: https://review.openocd.org/c/openocd/+/6731 Tested-by: jenkins Reviewed-by: Antonio Borneo <bor...@gm...> diff --git a/doc/openocd.texi b/doc/openocd.texi index ccad381b2..7962093e4 100644 --- a/doc/openocd.texi +++ b/doc/openocd.texi @@ -6829,9 +6829,11 @@ flash bank $_FLASHNAME npcx 0x64000000 0 0 0 $_TARGETNAME @deffn {Flash Driver} {nrf5} All members of the nRF51 microcontroller families from Nordic Semiconductor -include internal flash and use ARM Cortex-M0 core. -Also, the nRF52832 microcontroller from Nordic Semiconductor, which include -internal flash and use an ARM Cortex-M4F core. +include internal flash and use ARM Cortex-M0 core. nRF52 family powered +by ARM Cortex-M4 or M4F core is supported too. nRF52832 is fully supported +including BPROT flash protection scheme. nRF52833 and nRF52840 devices are +supported with the exception of security extensions (flash access control list +- ACL). @example flash bank $_FLASHNAME nrf5 0 0x00000000 0 0 $_TARGETNAME commit 21d11f13ec533dab4d810ba631bb860768ee2cee Author: Tomas Vanek <va...@fb...> Date: Sat Nov 20 14:27:45 2021 +0100 flash/nor/at91samd: remove 'at91samd info' command The command is a stub only, does nothing. Change-Id: Ib3b8c2122a9f6f2e179bee34ac56d0adf367bfcc Signed-off-by: Tomas Vanek <va...@fb...> Reviewed-on: https://review.openocd.org/c/openocd/+/6730 Tested-by: jenkins Reviewed-by: Antonio Borneo <bor...@gm...> diff --git a/src/flash/nor/at91samd.c b/src/flash/nor/at91samd.c index a8fab486c..5f314d82b 100644 --- a/src/flash/nor/at91samd.c +++ b/src/flash/nor/at91samd.c @@ -946,11 +946,6 @@ FLASH_BANK_COMMAND_HANDLER(samd_flash_bank_command) return ERROR_OK; } -COMMAND_HANDLER(samd_handle_info_command) -{ - return ERROR_OK; -} - COMMAND_HANDLER(samd_handle_chip_erase_command) { struct target *target = get_current_target(CMD_CTX); @@ -1211,14 +1206,6 @@ static const struct command_registration at91samd_exec_command_handlers[] = { .help = "Deassert internal reset held by DSU.", .usage = "", }, - { - .name = "info", - .handler = samd_handle_info_command, - .mode = COMMAND_EXEC, - .help = "Print information about the current at91samd chip " - "and its flash configuration.", - .usage = "", - }, { .name = "chip-erase", .handler = samd_handle_chip_erase_command, ----------------------------------------------------------------------- Summary of changes: doc/openocd.texi | 8 +++++--- src/flash/nor/at91samd.c | 13 ------------- 2 files changed, 5 insertions(+), 16 deletions(-) hooks/post-receive -- Main OpenOCD repository |