Add support for STM32F7 MCU

This commit is contained in:
Morten
2018-01-11 22:29:08 +01:00
committed by Scott Lahteine
parent a27fa80a7e
commit a0246c5c96
32 changed files with 7633 additions and 10 deletions

View File

@ -48,6 +48,10 @@
#elif defined(__STM32F1__) || defined(TARGET_STM32F1)
#include "math_32bit.h"
#include "HAL_STM32F1/HAL_Stm32f1.h"
#elif defined(STM32F7)
#define CPU_32_BIT
#include "math_32bit.h"
#include "HAL_STM32F7/HAL_STM32F7.h"
#else
#error "Unsupported Platform!"
#endif