From 9e69b5d447fcbb992ae40067454e88fc8050127e Mon Sep 17 00:00:00 2001 From: Michael Nolan Date: Thu, 11 Mar 2021 12:17:19 -0500 Subject: [PATCH] Fix incorrect STM32H7_CORE_ID value The STM32H7_CORE_ID value in the manual is 0x6b00477, however it was incorrectly set in stm32.h to 0x6b002477 Fixes #1098 --- inc/stm32.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/stm32.h b/inc/stm32.h index ca56a12f5..318eb5b0a 100644 --- a/inc/stm32.h +++ b/inc/stm32.h @@ -10,7 +10,7 @@ /* Cortex core ids */ #define STM32VL_CORE_ID 0x1ba01477 #define STM32F7_CORE_ID 0x5ba02477 -#define STM32H7_CORE_ID 0x6ba02477 // STM32H7 JTAG ID Code (RM0433 pg3065) +#define STM32H7_CORE_ID 0x6ba00477 // STM32H7 JTAG ID Code (RM0433 pg3065) /* Constant STM32 memory map figures */ #define STM32_FLASH_BASE ((uint32_t)0x08000000)