This is an automated email from Gerrit. nh minus ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/5305
-- gerrit commit 0dd6026a057ad4114889005bfc99bd4efe21cea1 Author: Jimmy <[email protected]> Date: Mon Sep 23 15:32:58 2019 +0800 flash/nor/efm32.c: Correct EFM32TG11 register base address The original support was added before the datasheet became available, and the actual base address turned out to be different from the usual one. Change-Id: I2877b594b5ccd0ed99637e3d55b103ad540357dc Signed-off-by: Jimmy <[email protected]> diff --git a/src/flash/nor/efm32.c b/src/flash/nor/efm32.c index 83d133f..245f856 100644 --- a/src/flash/nor/efm32.c +++ b/src/flash/nor/efm32.c @@ -166,7 +166,7 @@ static const struct efm32_family_data efm32_families[] = { { 89, "EFM32PG13B Pearl", .series = 1 }, { 91, "EFM32JG13B Jade", .series = 1 }, { 100, "EFM32GG11B Giant", .series = 1, .msc_regbase = 0x40000000 }, - { 103, "EFM32TG11B Tiny", .series = 1 }, + { 103, "EFM32TG11B Tiny", .series = 1, .msc_regbase = 0x40000000 }, { 120, "EZR32WG Wonder", .series = 0 }, { 121, "EZR32LG Leopard", .series = 0 }, { 122, "EZR32HG Happy", .series = 0, .page_size = 1024 }, -- _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
