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