mirror of https://github.com/ArduPilot/ardupilot
17 lines
221 B
C
17 lines
221 B
C
|
/*
|
||
|
MCU tables for STM32L4
|
||
|
*/
|
||
|
|
||
|
#if defined(STM32L4)
|
||
|
|
||
|
#define STM32_UNKNOWN 0
|
||
|
|
||
|
mcu_des_t mcu_descriptions[] = {
|
||
|
{ STM32_UNKNOWN, "STM32L4??", '?'},
|
||
|
};
|
||
|
|
||
|
const mcu_rev_t silicon_revs[] = {
|
||
|
};
|
||
|
|
||
|
#endif // STM32L4
|