Adding support for STM32F4 and STM32F7 (first part…)

This commit is contained in:
Andy CA6JAU 2017-10-09 22:42:22 -03:00
parent 8bcf38a414
commit 58d732660c
8 changed files with 585 additions and 113 deletions

View file

@ -23,6 +23,10 @@ Boston, MA 02110-1301, USA.
#if defined(STM32F10X_MD)
#include "stm32f10x.h"
#elif defined(STM32F4XX)
#include "stm32f4xx.h"
#elif defined(STM32F7XX)
#include "stm32f7xx.h"
#else
#include <Arduino.h>
#endif