Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ardupilot
GitHub Repository: Ardupilot/ardupilot
Path: blob/master/Tools/AP_Bootloader/mcu_f3.h
9572 views
1
/*
2
support tables for STM32F3
3
*/
4
5
#if defined(STM32F3)
6
#define STM32_UNKNOWN 0
7
8
const mcu_des_t mcu_descriptions[] = {
9
{ STM32_UNKNOWN, "STM32F3xx" },
10
};
11
12
const mcu_rev_t silicon_revs[] = {
13
};
14
15
#endif // STM32F3
16
17