From a31ddfc5533658eed5763ddf43e45aa27c044831 Mon Sep 17 00:00:00 2001 From: Daniele Lacamera Date: Thu, 28 Nov 2024 11:28:31 +0100 Subject: [PATCH] Fixed include order --- test-app/app_imx_rt.c | 2 +- test-app/app_nrf52.c | 2 +- test-app/app_stm32f7.c | 2 +- test-app/app_stm32l0.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test-app/app_imx_rt.c b/test-app/app_imx_rt.c index 317826d43..120aa16cc 100644 --- a/test-app/app_imx_rt.c +++ b/test-app/app_imx_rt.c @@ -17,6 +17,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA */ +#include "target.h" #include "wolfboot/wolfboot.h" #include #include "fsl_common.h" @@ -24,7 +25,6 @@ #include "fsl_debug_console.h" #include "fsl_gpio.h" #include "fsl_iomuxc.h" -#include "target.h" static int g_pinSet = false; extern void imx_rt_init_boot_clock(void); diff --git a/test-app/app_nrf52.c b/test-app/app_nrf52.c index 593a7e9ee..d910cf3f7 100644 --- a/test-app/app_nrf52.c +++ b/test-app/app_nrf52.c @@ -22,10 +22,10 @@ #include #include #include +#include "target.h" #include "wolfboot/wolfboot.h" #include "hal/nrf52.h" #include "printf.h" -#include "target.h" static const char extradata[1024 * 16] = "hi!"; diff --git a/test-app/app_stm32f7.c b/test-app/app_stm32f7.c index 842629738..44ae204b9 100644 --- a/test-app/app_stm32f7.c +++ b/test-app/app_stm32f7.c @@ -25,9 +25,9 @@ #include #include #include "system.h" +#include "target.h" #include "wolfboot/wolfboot.h" #include "hal.h" -#include "target.h" /* UART module */ diff --git a/test-app/app_stm32l0.c b/test-app/app_stm32l0.c index b4cfe8d71..1697eb614 100644 --- a/test-app/app_stm32l0.c +++ b/test-app/app_stm32l0.c @@ -25,11 +25,11 @@ #include #include #include "led.h" +#include "target.h" #include "wolfboot/wolfboot.h" #ifdef SPI_FLASH #include "spi_flash.h" #endif -#include "target.h" #ifdef TARGET_stm32l0