CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Ardupilot

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: Ardupilot/ardupilot
Path: blob/master/Tools/AP_Bootloader/mcu_h7.h
Views: 1798
1
/*
2
MCU tables for STM32H7
3
*/
4
5
#if defined(STM32H7)
6
7
#define STM32_UNKNOWN 0
8
#define STM32_H743 0x450
9
#define STM32_H730 0x483
10
11
mcu_des_t mcu_descriptions[] = {
12
{ STM32_UNKNOWN, "STM32H7???"},
13
{ STM32_H730, "STM32H73x/72x"},
14
{ STM32_H743, "STM32H743/753/750"},
15
};
16
17
const mcu_rev_t silicon_revs[] = {
18
{0x1001, 'Z'},
19
{0x1003, 'Y'},
20
{0x2001, 'X'},
21
{0x2003, 'V'},
22
};
23
24
#endif // STM32H7
25
26