mirror of https://github.com/ArduPilot/ardupilot
25 lines
436 B
C
25 lines
436 B
C
/*
|
|
MCU tables for STM32H7
|
|
*/
|
|
|
|
#if defined(STM32H7)
|
|
|
|
#define STM32_UNKNOWN 0
|
|
#define STM32_H743 0x450
|
|
#define STM32_H730 0x483
|
|
|
|
mcu_des_t mcu_descriptions[] = {
|
|
{ STM32_UNKNOWN, "STM32H7???"},
|
|
{ STM32_H730, "STM32H73x/72x"},
|
|
{ STM32_H743, "STM32H743/753/750"},
|
|
};
|
|
|
|
const mcu_rev_t silicon_revs[] = {
|
|
{0x1001, 'Z'},
|
|
{0x1003, 'Y'},
|
|
{0x2001, 'X'},
|
|
{0x2003, 'V'},
|
|
};
|
|
|
|
#endif // STM32H7
|