gpio: Add generic ll_gpio.h

This commit is contained in:
Daniel Fekete 2017-05-31 17:52:38 +02:00
parent 2f5aedcac5
commit fde12daf27
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
#include "stm32_build_defines.h"
#ifdef STM32F0
#include "stm32f0xx_ll_gpio.h"
#endif
#ifdef STM32F1
#include "stm32f1xx_ll_gpio.h"
#endif
#ifdef STM32F2
#include "stm32f2xx_ll_gpio.h"
#endif
#ifdef STM32F3
#include "stm32f3xx_ll_gpio.h"
#endif
#ifdef STM32F4
#include "stm32f4xx_ll_gpio.h"
#endif
#ifdef STM32F7
#include "stm32f7xx_ll_gpio.h"
#endif
#ifdef STM32L0
#include "stm32l0xx_ll_gpio.h"
#endif
#ifdef STM32L1
#include "stm32l1xx_ll_gpio.h"
#endif
#ifdef STM32L4
#include "stm32l4xx_ll_gpio.h"
#endif