AP_Bootloader: add H73x MCU ID and produce pretty output

This commit is contained in:
Andy Piper 2022-09-01 11:32:50 +01:00 committed by Andrew Tridgell
parent 93e1859ba6
commit 7336f745dd
1 changed files with 4 additions and 2 deletions

View File

@ -6,10 +6,12 @@
#define STM32_UNKNOWN 0
#define STM32_H743 0x450
#define STM32_H730 0x483
mcu_des_t mcu_descriptions[] = {
{ STM32_UNKNOWN, "STM32H7???" },
{ STM32_H743, "STM32H743/753" },
{ STM32_UNKNOWN, "STM32H7???"},
{ STM32_H730, "STM32H73x/72x"},
{ STM32_H743, "STM32H743/753/750"},
};
const mcu_rev_t silicon_revs[] = {