mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-09 01:18:29 -04:00
AP_Bootloader: added STM32H7xx chip revisions
This commit is contained in:
parent
ca10788533
commit
9c22477f3e
@ -4,14 +4,19 @@
|
|||||||
|
|
||||||
#if defined(STM32H7)
|
#if defined(STM32H7)
|
||||||
|
|
||||||
#define STM32_UNKNOWN 0
|
#define STM32_UNKNOWN 0
|
||||||
|
#define STM32_H743 0x450
|
||||||
|
|
||||||
mcu_des_t mcu_descriptions[] = {
|
mcu_des_t mcu_descriptions[] = {
|
||||||
{ STM32_UNKNOWN, "STM32H7?????", '?'},
|
{ STM32_UNKNOWN, "STM32H7???", '?'},
|
||||||
|
{ STM32_H743, "STM32H743/753", '?'},
|
||||||
};
|
};
|
||||||
|
|
||||||
const mcu_rev_t silicon_revs[] = {
|
const mcu_rev_t silicon_revs[] = {
|
||||||
|
{0x1001, 'Z', false},
|
||||||
|
{0x1003, 'Y', false},
|
||||||
|
{0x2001, 'X', false},
|
||||||
|
{0x2003, 'V', false},
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // STM32H7
|
#endif // STM32H7
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user