Skip to content

Commit 1976893

Browse files
committed
bump up mcux-sdk for rt11xx, add back OPT_MCU_MIMXRT11XX
1 parent ec6f567 commit 1976893

File tree

6 files changed

+10
-3
lines changed

6 files changed

+10
-3
lines changed

examples/host/bare_api/only.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ mcu:LPC18XX
44
mcu:LPC40XX
55
mcu:LPC43XX
66
mcu:MIMXRT10XX
7+
mcu:MIMXRT11XX
78
mcu:RP2040
89
mcu:MSP432E4
910
mcu:RX65X

examples/host/cdc_msc_hid/only.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ mcu:LPC18XX
44
mcu:LPC40XX
55
mcu:LPC43XX
66
mcu:MIMXRT10XX
7+
mcu:MIMXRT11XX
78
mcu:RP2040
89
mcu:MSP432E4
910
mcu:RX65X

examples/host/hid_controller/only.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ mcu:LPC18XX
44
mcu:LPC40XX
55
mcu:LPC43XX
66
mcu:MIMXRT10XX
7+
mcu:MIMXRT11XX
78
mcu:RP2040
89
mcu:MSP432E4
910
mcu:RX65X

hw/mcu/nxp/mcux-sdk

src/portable/chipidea/ci_hs/ci_hs_imxrt.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131

3232
#if !defined(USB1_BASE) && defined(USB_OTG1_BASE)
3333
#define USB1_BASE USB_OTG1_BASE
34+
#endif
35+
36+
#if !defined(USB2_BASE) && defined(USB_OTG2_BASE)
3437
#define USB2_BASE USB_OTG2_BASE
3538
#endif
3639

src/tusb_option.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,9 @@ typedef int make_iso_compilers_happy;
9898
#define OPT_MCU_VALENTYUSB_EPTRI 600 ///< Fomu eptri config
9999

100100
// NXP iMX RT
101-
#define OPT_MCU_MIMXRT 700 ///< NXP iMX RT Series
102-
#define OPT_MCU_MIMXRT10XX OPT_MCU_MIMXRT
101+
#define OPT_MCU_MIMXRT 700 ///< NXP iMX RT Series
102+
#define OPT_MCU_MIMXRT10XX OPT_MCU_MIMXRT ///< RT10xx
103+
#define OPT_MCU_MIMXRT11XX OPT_MCU_MIMXRT ///< RT11xx
103104

104105
// Nuvoton
105106
#define OPT_MCU_NUC121 800

0 commit comments

Comments
 (0)