AP_Bootloader: support STM32F303 MCU

This commit is contained in:
Andrew Tridgell 2019-10-31 22:00:27 +11:00
parent 1d44718016
commit 147cf900fe
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,15 @@
/*
support tables for STM32F3
*/
#if defined(STM32F3)
#define STM32_UNKNOWN 0
const mcu_des_t mcu_descriptions[] = {
{ STM32_UNKNOWN, "STM32F3xx", '?'},
};
const mcu_rev_t silicon_revs[] = {
};
#endif // STM32F3

View File

@ -11,6 +11,7 @@
#include <AP_HAL_ChibiOS/hwdef/common/stm32_util.h>
#include "support.h"
#include "mcu_f1.h"
#include "mcu_f3.h"
#include "mcu_f4.h"
#include "mcu_f7.h"
#include "mcu_h7.h"