From cd5154e77da09d5390493a08d09408d5369ee294 Mon Sep 17 00:00:00 2001 From: Jeff Lehman Date: Wed, 23 Nov 2022 19:25:29 -0600 Subject: [PATCH] move #import statements to the top of the file --- src/fdrs_functions.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/fdrs_functions.h b/src/fdrs_functions.h index 108c570..6b05c18 100644 --- a/src/fdrs_functions.h +++ b/src/fdrs_functions.h @@ -7,6 +7,9 @@ #ifndef __FDRS_FUNCTIONS_H__ #define __FDRS_FUNCTIONS_H__ +#include +#include + #ifdef ESP8266 #include #include @@ -319,11 +322,6 @@ static uint16_t crc16_update(uint16_t crc, uint8_t a) return crc; } - - -#include -#include - void getSerial() { String incomingString; if (UART_IF.available()){