diff options
Diffstat (limited to 'Libraries/TouchSense')
5 files changed, 10 insertions, 0 deletions
diff --git a/Libraries/TouchSense/STMTouch_Driver/inc/tsl_time_stm32f0xx.h b/Libraries/TouchSense/STMTouch_Driver/inc/tsl_time_stm32f0xx.h index 363044d..6216974 100644 --- a/Libraries/TouchSense/STMTouch_Driver/inc/tsl_time_stm32f0xx.h +++ b/Libraries/TouchSense/STMTouch_Driver/inc/tsl_time_stm32f0xx.h @@ -31,6 +31,7 @@ /* Includes ------------------------------------------------------------------*/ #include "stm32f0xx.h" +#include "stm32f0xx_rcc.h" #include "tsl_conf_stm32f0xx.h" #include "tsl_types.h" diff --git a/Libraries/TouchSense/STMTouch_Driver/src/tsl_acq.c b/Libraries/TouchSense/STMTouch_Driver/src/tsl_acq.c index 45a9a10..85156ec 100644 --- a/Libraries/TouchSense/STMTouch_Driver/src/tsl_acq.c +++ b/Libraries/TouchSense/STMTouch_Driver/src/tsl_acq.c @@ -28,6 +28,7 @@ /* Includes ------------------------------------------------------------------*/ #include "tsl_acq.h" #include "tsl_globals.h" +#include "stm32f0xx_conf.h" /* Private typedefs ----------------------------------------------------------*/ /* Private defines -----------------------------------------------------------*/ diff --git a/Libraries/TouchSense/STMTouch_Driver/src/tsl_acq_stm32f0xx.c b/Libraries/TouchSense/STMTouch_Driver/src/tsl_acq_stm32f0xx.c index a0967a9..24271de 100644 --- a/Libraries/TouchSense/STMTouch_Driver/src/tsl_acq_stm32f0xx.c +++ b/Libraries/TouchSense/STMTouch_Driver/src/tsl_acq_stm32f0xx.c @@ -30,6 +30,10 @@ #include "tsl_acq_stm32f0xx.h" #include "tsl_globals.h" #include "stm32f0xx_it.h" +#include "stm32f0xx_gpio.h" +#include "stm32f0xx_conf.h" +#include "stm32f0xx_misc.h" +#include "stm32f0xx_rtc.h" /* Private typedefs ----------------------------------------------------------*/ /* Private defines -----------------------------------------------------------*/ diff --git a/Libraries/TouchSense/STMTouch_Driver/src/tsl_ecs.c b/Libraries/TouchSense/STMTouch_Driver/src/tsl_ecs.c index ae5e50a..39052fd 100644 --- a/Libraries/TouchSense/STMTouch_Driver/src/tsl_ecs.c +++ b/Libraries/TouchSense/STMTouch_Driver/src/tsl_ecs.c @@ -28,6 +28,7 @@ /* Includes ------------------------------------------------------------------*/ #include "tsl_ecs.h" #include "tsl_globals.h" +#include "stm32f0xx_conf.h" /* Private typedefs ----------------------------------------------------------*/ /* Private defines -----------------------------------------------------------*/ diff --git a/Libraries/TouchSense/STMTouch_Driver/src/tsl_time_stm32f0xx.c b/Libraries/TouchSense/STMTouch_Driver/src/tsl_time_stm32f0xx.c index c44bb34..4db154a 100644 --- a/Libraries/TouchSense/STMTouch_Driver/src/tsl_time_stm32f0xx.c +++ b/Libraries/TouchSense/STMTouch_Driver/src/tsl_time_stm32f0xx.c @@ -27,6 +27,9 @@ /* Includes ------------------------------------------------------------------*/ #include "tsl_time_stm32f0xx.h" +#include "stm32f0xx_misc.h" +#include "stm32f0xx_rtc.h" +#include "stm32f0xx_tim.h" /* Private typedefs ----------------------------------------------------------*/ /* Private defines -----------------------------------------------------------*/ |