From 625998d32104c40ca6861afb64933d0500a42a82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jasper=20G=C3=BCldenstein?= Date: Sun, 15 Nov 2020 16:26:48 +0100 Subject: [PATCH] move includes from h to c file --- keil_project/Services/RFOutput.c | 4 ++++ keil_project/Services/RFOutput.h | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/keil_project/Services/RFOutput.c b/keil_project/Services/RFOutput.c index 42f2813..c0f18b8 100644 --- a/keil_project/Services/RFOutput.c +++ b/keil_project/Services/RFOutput.c @@ -1,4 +1,8 @@ #include "RFOutput.h" + +#include "stm32f1xx_ll_bus.h" +#include "stm32f1xx_ll_usart.h" +#include "stm32f1xx_ll_gpio.h" #include char RF_OUTPUT_buf[100]; diff --git a/keil_project/Services/RFOutput.h b/keil_project/Services/RFOutput.h index ea165c1..23cd392 100644 --- a/keil_project/Services/RFOutput.h +++ b/keil_project/Services/RFOutput.h @@ -8,10 +8,6 @@ #ifndef RF_OUTPUT_INPUT_H #define RF_OUTPUT_INPUT_H -#include "stm32f1xx_ll_bus.h" -#include "stm32f1xx_ll_usart.h" -#include "stm32f1xx_ll_gpio.h" - /** * @brief Initialziation function for the RF_OUTPUT module. * Peripherals used: USART1