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_g4.h
Views: 1798
1
/*
2
MCU tables for STM32G4
3
*/
4
5
#if defined(STM32G4)
6
7
#define STM32_UNKNOWN 0
8
9
mcu_des_t mcu_descriptions[] = {
10
{ STM32_UNKNOWN, "STM32G4??" },
11
};
12
13
const mcu_rev_t silicon_revs[] = {
14
};
15
16
#endif // STM32G4
17
18
19