Skip to content

Commit

Permalink
Fix incorrect STM32H7_CORE_ID value
Browse files Browse the repository at this point in the history
The STM32H7_CORE_ID value in the manual is 0x6b00477, however it was
incorrectly set in stm32.h to 0x6b002477
Fixes stlink-org#1098
  • Loading branch information
C-Elegans committed Mar 11, 2021
1 parent 86e6dd0 commit 9e69b5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/stm32.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 9e69b5d

Please sign in to comment.