diff --git a/STM32/cores/arduino/stm32_HAL/stm32XXxx_ll_gpio.h b/STM32/cores/arduino/stm32_HAL/stm32XXxx_ll_gpio.h new file mode 100644 index 0000000..e303d4e --- /dev/null +++ b/STM32/cores/arduino/stm32_HAL/stm32XXxx_ll_gpio.h @@ -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