Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ardupilot
GitHub Repository: Ardupilot/ardupilot
Path: blob/master/Tools/AP_Bootloader/mcu_f1.h
9651 views
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