Skip to content

Commit a31ddfc

Browse files
committed
Fixed include order
1 parent b6d3d4a commit a31ddfc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

test-app/app_imx_rt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
1818
*/
1919

20+
#include "target.h"
2021
#include "wolfboot/wolfboot.h"
2122
#include <stdint.h>
2223
#include "fsl_common.h"
2324
#include "fsl_clock.h"
2425
#include "fsl_debug_console.h"
2526
#include "fsl_gpio.h"
2627
#include "fsl_iomuxc.h"
27-
#include "target.h"
2828

2929
static int g_pinSet = false;
3030
extern void imx_rt_init_boot_clock(void);

test-app/app_nrf52.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
#include <stdlib.h>
2323
#include <stdint.h>
2424
#include <string.h>
25+
#include "target.h"
2526
#include "wolfboot/wolfboot.h"
2627
#include "hal/nrf52.h"
2728
#include "printf.h"
28-
#include "target.h"
2929

3030
static const char extradata[1024 * 16] = "hi!";
3131

test-app/app_stm32f7.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
#include <stdint.h>
2626
#include <string.h>
2727
#include "system.h"
28+
#include "target.h"
2829
#include "wolfboot/wolfboot.h"
2930
#include "hal.h"
30-
#include "target.h"
3131

3232

3333
/* UART module */

test-app/app_stm32l0.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
#include <stdint.h>
2626
#include <string.h>
2727
#include "led.h"
28+
#include "target.h"
2829
#include "wolfboot/wolfboot.h"
2930
#ifdef SPI_FLASH
3031
#include "spi_flash.h"
3132
#endif
32-
#include "target.h"
3333

3434
#ifdef TARGET_stm32l0
3535

0 commit comments

Comments
 (0)