diff options
| author | Jerzy Kasenberg <[email protected]> | 2022-01-17 08:50:11 +0100 |
|---|---|---|
| committer | Jerzy Kasenberg <[email protected]> | 2022-01-17 09:14:41 +0100 |
| commit | ec01428820ae5ea35bb559adf4894c4e816b7651 (patch) | |
| tree | 95937d6e5c14b711d7b9d14a6aa5fc65e678cd31 /src | |
| parent | 58b8bdc2e469c73406b470cb1d99d5b94c1fdf39 (diff) | |
ft9xx: Fix Mynewt build
Includes were moved few lines down to restore build with Mynewt build system.
Diffstat (limited to 'src')
| -rw-r--r-- | src/portable/bridgetek/ft9xx/dcd_ft9xx.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/portable/bridgetek/ft9xx/dcd_ft9xx.c b/src/portable/bridgetek/ft9xx/dcd_ft9xx.c index 793d40f81..d46723caa 100644 --- a/src/portable/bridgetek/ft9xx/dcd_ft9xx.c +++ b/src/portable/bridgetek/ft9xx/dcd_ft9xx.c @@ -29,16 +29,17 @@ * in https://brtchip.com/BRTSourceCodeLicenseAgreement */ +#include "tusb_option.h" + +#if TUSB_OPT_DEVICE_ENABLED && \ + (CFG_TUSB_MCU == OPT_MCU_FT90X || CFG_TUSB_MCU == OPT_MCU_FT93X) + #include <stdint.h> #include <ft900.h> #include <registers/ft900_registers.h> #include "board.h" #include "bsp/board.h" -#include "tusb_option.h" - -#if TUSB_OPT_DEVICE_ENABLED && \ - (CFG_TUSB_MCU == OPT_MCU_FT90X || CFG_TUSB_MCU == OPT_MCU_FT93X) #define USBD_USE_STREAMS |
