2019-10-31 08:00:27 -03:00
|
|
|
/*
|
|
|
|
support tables for STM32F3
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(STM32F3)
|
|
|
|
#define STM32_UNKNOWN 0
|
|
|
|
|
|
|
|
const mcu_des_t mcu_descriptions[] = {
|
2023-04-14 07:54:34 -03:00
|
|
|
{ STM32_UNKNOWN, "STM32F3xx" },
|
2019-10-31 08:00:27 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
const mcu_rev_t silicon_revs[] = {
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // STM32F3
|