move includes from h to c file

This commit is contained in:
Jasper Güldenstein 2020-11-15 16:26:48 +01:00
parent cacd44d03d
commit 625998d321
2 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,8 @@
#include "RFOutput.h" #include "RFOutput.h"
#include "stm32f1xx_ll_bus.h"
#include "stm32f1xx_ll_usart.h"
#include "stm32f1xx_ll_gpio.h"
#include <stdio.h> #include <stdio.h>
char RF_OUTPUT_buf[100]; char RF_OUTPUT_buf[100];

View file

@ -8,10 +8,6 @@
#ifndef RF_OUTPUT_INPUT_H #ifndef RF_OUTPUT_INPUT_H
#define 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. * @brief Initialziation function for the RF_OUTPUT module.
* Peripherals used: USART1 * Peripherals used: USART1