Skip to content

Commit

Permalink
Fixed include order
Browse files Browse the repository at this point in the history
  • Loading branch information
danielinux committed Nov 28, 2024
1 parent b6d3d4a commit a31ddfc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test-app/app_imx_rt.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
*/

#include "target.h"
#include "wolfboot/wolfboot.h"
#include <stdint.h>
#include "fsl_common.h"
#include "fsl_clock.h"
#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);
Expand Down
2 changes: 1 addition & 1 deletion test-app/app_nrf52.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include "target.h"
#include "wolfboot/wolfboot.h"
#include "hal/nrf52.h"
#include "printf.h"
#include "target.h"

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

Expand Down
2 changes: 1 addition & 1 deletion test-app/app_stm32f7.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
#include <stdint.h>
#include <string.h>
#include "system.h"
#include "target.h"
#include "wolfboot/wolfboot.h"
#include "hal.h"
#include "target.h"


/* UART module */
Expand Down
2 changes: 1 addition & 1 deletion test-app/app_stm32l0.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
#include <stdint.h>
#include <string.h>
#include "led.h"
#include "target.h"
#include "wolfboot/wolfboot.h"
#ifdef SPI_FLASH
#include "spi_flash.h"
#endif
#include "target.h"

#ifdef TARGET_stm32l0

Expand Down

0 comments on commit a31ddfc

Please sign in to comment.