soc: stm32: F1/F3/F4/L4: enable I2C LL

Signed-off-by: Yannis Damigos <giannis.damigos@gmail.com>
Signed-off-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>
This commit is contained in:
Yannis Damigos 2017-06-23 11:27:17 +02:00 committed by Anas Nashif
commit 220ddb9738
5 changed files with 19 additions and 0 deletions

View file

@ -56,6 +56,10 @@ enum stm32f10x_pin_config_mode {
#include <stm32f1xx_ll_system.h>
#endif /* CONFIG_CLOCK_CONTROL_STM32_CUBE */
#ifdef CONFIG_I2C
#include <stm32f1xx_ll_i2c.h>
#endif
#endif /* !_ASMLANGUAGE */
#endif /* _STM32F1_SOC_H_ */

View file

@ -59,6 +59,10 @@ enum stm32f3x_pin_config_mode {
#include <stm32f3xx_ll_system.h>
#endif /* CONFIG_CLOCK_CONTROL_STM32_CUBE */
#ifdef CONFIG_I2C
#include <stm32f3xx_ll_i2c.h>
#endif
#endif /* !_ASMLANGUAGE */
#endif /* _STM32F3_SOC_H_ */

View file

@ -59,6 +59,10 @@ enum stm32f4x_pin_config_mode {
#include <stm32f4xx_ll_system.h>
#endif /* CONFIG_CLOCK_CONTROL_STM32_CUBE */
#ifdef CONFIG_I2C
#include <stm32f4xx_ll_i2c.h>
#endif
#endif /* !_ASMLANGUAGE */
#endif /* _STM32F4_SOC_H_ */

View file

@ -42,6 +42,10 @@
#include <stm32l4xx_ll_system.h>
#endif /* CONFIG_CLOCK_CONTROL_STM32_CUBE */
#ifdef CONFIG_I2C
#include <stm32l4xx_ll_i2c.h>
#endif
#endif /* !_ASMLANGUAGE */
#endif /* _STM32L4X_SOC_H_ */