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