Break the stm32_otg.h into an stm32fxxxxx and stm32f44xx (should work on F7) versions

This commit is contained in:
David Sidrane 2015-08-21 13:55:06 -10:00
parent 5d1ff3f7e1
commit 7c96342c63
3 changed files with 2042 additions and 1 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -45,7 +45,12 @@
#include <stdint.h>
#include "stm32.h"
#include "chip/stm32_otgfs.h"
#if defined(CONFIG_STM32_STM32F446)
# include "chip/stm32f44xxx_otgfs.h"
#else
# include "chip/stm32fxxxxx_otgfs.h"
#endif
#if defined(CONFIG_STM32_OTGFS)