From: OpenOCD-Gerrit <ope...@us...> - 2021-11-29 09:52:07
|
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 1ad6ed38b6da09b1d5d9e56d1344fced2dce12bc (commit) from 1d1386e31ed47dcdd9b433b810b27a0f28928bc7 (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 1ad6ed38b6da09b1d5d9e56d1344fced2dce12bc Author: Doug Brunner <dou...@gm...> Date: Mon Oct 25 12:21:34 2021 -0700 flash/nor/efm32: fixed BG1x identification The EFM32 flash driver misidentifies the EFR32BG1B on my board as EFR32MG1B. Looks like this was caused by a copy-paste error, fixed. Signed-off-by: Doug Brunner <dou...@gm...> Change-Id: I3067f7ba132c2562487da8c2371f63a4843230c1 Reviewed-on: https://review.openocd.org/c/openocd/+/6666 Tested-by: jenkins Reviewed-by: Fredrik Hederstierna <fre...@gm...> Reviewed-by: Tomas Vanek <va...@fb...> diff --git a/src/flash/nor/efm32.c b/src/flash/nor/efm32.c index ab0186d7d..fb4b09624 100644 --- a/src/flash/nor/efm32.c +++ b/src/flash/nor/efm32.c @@ -119,9 +119,9 @@ static const struct efm32_family_data efm32_families[] = { { 16, "EFR32MG1P Mighty", .series = 1 }, { 17, "EFR32MG1B Mighty", .series = 1 }, { 18, "EFR32MG1V Mighty", .series = 1 }, - { 19, "EFR32MG1P Blue", .series = 1 }, - { 20, "EFR32MG1B Blue", .series = 1 }, - { 21, "EFR32MG1V Blue", .series = 1 }, + { 19, "EFR32BG1P Blue", .series = 1 }, + { 20, "EFR32BG1B Blue", .series = 1 }, + { 21, "EFR32BG1V Blue", .series = 1 }, { 25, "EFR32FG1P Flex", .series = 1 }, { 26, "EFR32FG1B Flex", .series = 1 }, { 27, "EFR32FG1V Flex", .series = 1 }, ----------------------------------------------------------------------- Summary of changes: src/flash/nor/efm32.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) hooks/post-receive -- Main OpenOCD repository |