AP_Bootloader: added STM32H7xx chip revisions

This commit is contained in:
Andrew Tridgell 2019-11-25 18:06:21 +11:00 committed by Randy Mackay
parent ca10788533
commit 9c22477f3e
1 changed files with 8 additions and 3 deletions

View File

@ -4,14 +4,19 @@
#if defined(STM32H7)
#define STM32_UNKNOWN 0
#define STM32_UNKNOWN 0
#define STM32_H743 0x450
mcu_des_t mcu_descriptions[] = {
{ STM32_UNKNOWN, "STM32H7?????", '?'},
{ STM32_UNKNOWN, "STM32H7???", '?'},
{ STM32_H743, "STM32H743/753", '?'},
};
const mcu_rev_t silicon_revs[] = {
{0x1001, 'Z', false},
{0x1003, 'Y', false},
{0x2001, 'X', false},
{0x2003, 'V', false},
};
#endif // STM32H7