Skip to content

Commit fed7eec

Browse files
committed
Update MCUXpresso SDK for iMX-RT too
1 parent 233abfe commit fed7eec

10 files changed

Lines changed: 138 additions & 56 deletions

File tree

.github/workflows/test-configs.yml

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,74 +42,85 @@ jobs:
4242
config-file: ./config/examples/same51-dualbank.config
4343

4444
imx_rt1040_test:
45-
uses: ./.github/workflows/test-build-mcux-sdk.yml
45+
uses: ./.github/workflows/test-build-mcux-sdk-manifests.yml
4646
with:
4747
arch: arm
4848
config-file: ./config/examples/imx-rt1040.config
49+
board-name: evkmimxrt1040
4950

5051
imx_rt1050_test:
51-
uses: ./.github/workflows/test-build-mcux-sdk.yml
52+
uses: ./.github/workflows/test-build-mcux-sdk-manifests.yml
5253
with:
5354
arch: arm
5455
config-file: ./config/examples/imx-rt1050.config
56+
board-name: evkbimxrt1050
5557

5658
imx_rt1060_test:
57-
uses: ./.github/workflows/test-build-mcux-sdk.yml
59+
uses: ./.github/workflows/test-build-mcux-sdk-manifests.yml
5860
with:
5961
arch: arm
6062
config-file: ./config/examples/imx-rt1060.config
63+
board-name: evkbmimxrt1060
6164

6265
imx_rt1064_test:
63-
uses: ./.github/workflows/test-build-mcux-sdk.yml
66+
uses: ./.github/workflows/test-build-mcux-sdk-manifests.yml
6467
with:
6568
arch: arm
6669
config-file: ./config/examples/imx-rt1064.config
70+
board-name: evkmimxrt1064
6771

6872
imx_rt1040_test_pka:
69-
uses: ./.github/workflows/test-build-mcux-sdk.yml
73+
uses: ./.github/workflows/test-build-mcux-sdk-manifests.yml
7074
with:
7175
arch: arm
7276
config-file: ./config/examples/imx-rt1040.config
77+
board-name: evkmimxrt1040
7378
make-args: PKA=1 NO_ARM_ASM=1
7479

7580
imx_rt1050_test_pka:
76-
uses: ./.github/workflows/test-build-mcux-sdk.yml
81+
uses: ./.github/workflows/test-build-mcux-sdk-manifests.yml
7782
with:
7883
arch: arm
7984
config-file: ./config/examples/imx-rt1050.config
85+
board-name: evkbimxrt1050
8086
make-args: PKA=1 NO_ARM_ASM=1
8187

8288
imx_rt1060_test_pka:
83-
uses: ./.github/workflows/test-build-mcux-sdk.yml
89+
uses: ./.github/workflows/test-build-mcux-sdk-manifests.yml
8490
with:
8591
arch: arm
8692
config-file: ./config/examples/imx-rt1060.config
93+
board-name: evkbmimxrt1060
8794
make-args: PKA=1 NO_ARM_ASM=1
8895

8996
imx_rt1064_test_pka:
90-
uses: ./.github/workflows/test-build-mcux-sdk.yml
97+
uses: ./.github/workflows/test-build-mcux-sdk-manifests.yml
9198
with:
9299
arch: arm
93100
config-file: ./config/examples/imx-rt1064.config
101+
board-name: evkmimxrt1064
94102
make-args: PKA=1 NO_ARM_ASM=1
95103

96104
imx_rt1060_hab_test:
97-
uses: ./.github/workflows/test-build-mcux-sdk.yml
105+
uses: ./.github/workflows/test-build-mcux-sdk-manifests.yml
98106
with:
99107
arch: arm
100108
config-file: ./config/examples/imx-rt1060_hab.config
109+
board-name: evkbmimxrt1060
101110

102111
kinetis_k64f_test:
103-
uses: ./.github/workflows/test-build-mcux-sdk.yml
112+
uses: ./.github/workflows/test-build-mcux-sdk-manifests.yml
104113
with:
105114
arch: arm
106115
config-file: ./config/examples/kinetis-k64f.config
116+
board-name: frdmk64f
107117

108118
kinetis_k82f_test:
109-
uses: ./.github/workflows/test-build-mcux-sdk.yml
119+
uses: ./.github/workflows/test-build-mcux-sdk-manifests.yml
110120
with:
111121
arch: arm
112122
config-file: ./config/examples/kinetis-k82f.config
123+
board-name: frdmk82f
113124

114125
library_test:
115126
uses: ./.github/workflows/test-build.yml

arch.mk

Lines changed: 54 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -821,8 +821,12 @@ ifeq ($(TARGET),imx_rt)
821821

822822
ifeq ($(MCUXSDK),1)
823823
CFLAGS+=\
824-
-I$(MCUXPRESSO)/utilities/str \
825-
-I$(MCUXPRESSO)/utilities/debug_console
824+
-I$(MCUXPRESSO_DRIVERS)/../periph \
825+
-I$(MCUXPRESSO)/components/debug_console \
826+
-I$(MCUXPRESSO)/components/debug_console/config \
827+
-I$(MCUXPRESSO)/components/lists \
828+
-I$(MCUXPRESSO)/components/str
829+
CFLAGS+=-DDCB=CoreDebug -DDCB_DEMCR_TRCENA_Msk=CoreDebug_DEMCR_TRCENA_Msk
826830
OBJS+=\
827831
$(MCUXPRESSO_DRIVERS)/drivers/fsl_clock.o \
828832
$(MCUXPRESSO)/drivers/flexspi/fsl_flexspi.o \
@@ -851,32 +855,74 @@ ifeq ($(TARGET),imx_rt)
851855

852856
ifeq ($(MCUXPRESSO_CPU),MIMXRT1064DVL6A)
853857
ARCH_FLASH_OFFSET=0x70000000
854-
CFLAGS+=-I$(MCUXPRESSO)/boards/evkmimxrt1064/xip/
858+
ifeq ($(MCUXSDK),1)
859+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkmimxrt1064/xip/
860+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkmimxrt1064
861+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkmimxrt1064/project_template
862+
else
863+
CFLAGS+=-I$(MCUXPRESSO)/boards/evkmimxrt1064/xip/
864+
endif
855865
endif
856866

857867
ifeq ($(MCUXPRESSO_CPU),MIMXRT1062DVL6A)
858868
ARCH_FLASH_OFFSET=0x60000000
859-
CFLAGS+=-I$(MCUXPRESSO)/boards/evkmimxrt1060/xip/
869+
ifeq ($(MCUXSDK),1)
870+
# Use evkbmimxrt1060 because evkmimxrt1060 is not supported by the SDK
871+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkbmimxrt1060/xip/
872+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkbmimxrt1060
873+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkbmimxrt1060/project_template
874+
CFLAGS+=-I$(MCUXPRESSO)/devices/RT/RT1050/MIMXRT1052
875+
else
876+
CFLAGS+=-I$(MCUXPRESSO)/boards/evkmimxrt1060/xip/
877+
endif
860878
endif
861879

862880
ifeq ($(MCUXPRESSO_CPU),MIMXRT1062DVL6B)
863881
ARCH_FLASH_OFFSET=0x60000000
864-
CFLAGS+=-I$(MCUXPRESSO)/boards/evkbmimxrt1060/xip/
882+
ifeq ($(MCUXSDK),1)
883+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkbmimxrt1060/xip/
884+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkbmimxrt1060
885+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkbmimxrt1060/project_template
886+
CFLAGS+=-I$(MCUXPRESSO)/devices/RT/RT1050/MIMXRT1052
887+
else
888+
CFLAGS+=-I$(MCUXPRESSO)/boards/evkbmimxrt1060/xip/
889+
endif
865890
endif
866891

867892
ifeq ($(MCUXPRESSO_CPU),MIMXRT1061CVJ5B)
868893
ARCH_FLASH_OFFSET=0x60000000
869-
CFLAGS+=-I$(MCUXPRESSO)/boards/evkmimxrt1060/xip/
894+
ifeq ($(MCUXSDK),1)
895+
# Use evkbmimxrt1060 because evkmimxrt1060 is not supported by the SDK
896+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkbmimxrt1060/xip/
897+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkbmimxrt1060
898+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkbmimxrt1060/project_template
899+
CFLAGS+=-I$(MCUXPRESSO)/devices/RT/RT1050/MIMXRT1052
900+
else
901+
CFLAGS+=-I$(MCUXPRESSO)/boards/evkmimxrt1060/xip/
902+
endif
870903
endif
871904

872905
ifeq ($(MCUXPRESSO_CPU),MIMXRT1052DVJ6B)
873906
ARCH_FLASH_OFFSET=0x60000000
874-
CFLAGS+=-I$(MCUXPRESSO)/boards/evkbimxrt1050/xip/
907+
ifeq ($(MCUXSDK),1)
908+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkbimxrt1050/xip/
909+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkbimxrt1050
910+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkbimxrt1050/project_template
911+
else
912+
CFLAGS+=-I$(MCUXPRESSO)/boards/evkbimxrt1050/xip/
913+
endif
875914
endif
876915

877916
ifeq ($(MCUXPRESSO_CPU),MIMXRT1042XJM5B)
878917
ARCH_FLASH_OFFSET=0x60000000
879-
CFLAGS+=-I$(MCUXPRESSO)/boards/evkmimxrt1040/xip/
918+
ifeq ($(MCUXSDK),1)
919+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkmimxrt1040/xip/
920+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkmimxrt1040
921+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkmimxrt1040/project_template
922+
CFLAGS+=-I$(MCUXPRESSO)/devices/RT/RT1050/MIMXRT1052
923+
else
924+
CFLAGS+=-I$(MCUXPRESSO)/boards/evkmimxrt1040/xip/
925+
endif
880926
endif
881927

882928
ifeq ($(PKA),1)

config/examples/imx-rt1040.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ ARCH?=ARM
22
TARGET?=imx_rt
33
SIGN?=ECC256
44
HASH?=SHA256
5-
MCUXSDK?=0
6-
MCUXPRESSO?=$(PWD)/../SDK_2_14_0_EVKB-IMXRT1040
7-
MCUXPRESSO_CMSIS?=$(MCUXPRESSO)/CMSIS
5+
MCUXSDK?=1
6+
MCUXPRESSO?=$(PWD)/../NXP/mcuxpresso-sdk/mcuxsdk
7+
MCUXPRESSO_CMSIS?=$(PWD)/../NXP/CMSIS_5/CMSIS
88
MCUXPRESSO_CPU?=MIMXRT1042XJM5B
9-
MCUXPRESSO_DRIVERS?=$(MCUXPRESSO)/devices/MIMXRT1042
9+
MCUXPRESSO_DRIVERS?=$(MCUXPRESSO)/devices/RT/RT1040/MIMXRT1042
1010
DEBUG?=0
1111
VTOR?=1
1212
CORTEX_M0?=0

config/examples/imx-rt1050.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ ARCH?=ARM
22
TARGET?=imx_rt
33
SIGN?=ECC256
44
HASH?=SHA256
5-
MCUXSDK?=0
6-
MCUXPRESSO?=$(PWD)/../SDK_2_14_0_EVKB-IMXRT1050
7-
MCUXPRESSO_CMSIS?=$(MCUXPRESSO)/CMSIS
5+
MCUXSDK?=1
6+
MCUXPRESSO?=$(PWD)/../NXP/mcuxpresso-sdk/mcuxsdk
7+
MCUXPRESSO_CMSIS?=$(PWD)/../NXP/CMSIS_5/CMSIS
88
MCUXPRESSO_CPU?=MIMXRT1052DVJ6B
9-
MCUXPRESSO_DRIVERS?=$(MCUXPRESSO)/devices/MIMXRT1052
9+
MCUXPRESSO_DRIVERS?=$(MCUXPRESSO)/devices/RT/RT1050/MIMXRT1052
1010
DEBUG?=0
1111
VTOR?=1
1212
CORTEX_M0?=0

config/examples/imx-rt1060.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ ARCH?=ARM
22
TARGET?=imx_rt
33
SIGN?=ECC256
44
HASH?=SHA256
5-
MCUXSDK?=0
6-
MCUXPRESSO?=$(PWD)/../SDK-2.11.0_EVK-MIMXRT1060
7-
MCUXPRESSO_CMSIS?=$(MCUXPRESSO)/CMSIS
5+
MCUXSDK?=1
6+
MCUXPRESSO?=$(PWD)/../NXP/mcuxpresso-sdk/mcuxsdk
7+
MCUXPRESSO_CMSIS?=$(PWD)/../NXP/CMSIS_5/CMSIS
88
MCUXPRESSO_CPU?=MIMXRT1062DVL6A
9-
MCUXPRESSO_DRIVERS?=$(MCUXPRESSO)/devices/MIMXRT1062
9+
MCUXPRESSO_DRIVERS?=$(MCUXPRESSO)/devices/RT/RT1060/MIMXRT1062
1010
DEBUG?=0
1111
VTOR?=1
1212
CORTEX_M0?=0

config/examples/imx-rt1060_hab.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ TARGET?=imx_rt
33
TARGET_IMX_HAB?=1
44
SIGN?=ECC256
55
HASH?=SHA256
6-
MCUXSDK?=0
7-
MCUXPRESSO?=$(PWD)/../SDK-2.11.0_EVK-MIMXRT1060
8-
MCUXPRESSO_CMSIS?=$(MCUXPRESSO)/CMSIS
6+
MCUXSDK?=1
7+
MCUXPRESSO?=$(PWD)/../NXP/mcuxpresso-sdk/mcuxsdk
8+
MCUXPRESSO_CMSIS?=$(PWD)/../NXP/CMSIS_5/CMSIS
99
MCUXPRESSO_CPU?=MIMXRT1062DVL6A
10-
MCUXPRESSO_DRIVERS?=$(MCUXPRESSO)/devices/MIMXRT1062
10+
MCUXPRESSO_DRIVERS?=$(MCUXPRESSO)/devices/RT/RT1060/MIMXRT1062
1111
DEBUG?=0
1212
VTOR?=1
1313
CORTEX_M0?=0

config/examples/imx-rt1064.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ ARCH?=ARM
22
TARGET?=imx_rt
33
SIGN?=ECC256
44
HASH?=SHA256
5-
MCUXSDK?=0
6-
MCUXPRESSO?=$(PWD)/../SDK-2.11.0_EVK-MIMXRT1060
7-
MCUXPRESSO_CMSIS?=$(MCUXPRESSO)/CMSIS
5+
MCUXSDK?=1
6+
MCUXPRESSO?=$(PWD)/../NXP/mcuxpresso-sdk/mcuxsdk
7+
MCUXPRESSO_CMSIS?=$(PWD)/../NXP/CMSIS_5/CMSIS
88
MCUXPRESSO_CPU?=MIMXRT1064DVL6A
9-
MCUXPRESSO_DRIVERS?=$(MCUXPRESSO)/devices/MIMXRT1064
9+
MCUXPRESSO_DRIVERS?=$(MCUXPRESSO)/devices/RT/RT1064/MIMXRT1064
1010
DEBUG?=0
1111
VTOR?=1
1212
CORTEX_M0?=0

docs/Targets.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2683,15 +2683,15 @@ wolfBoot support for iMX-RT1060/iMX-RT1050 has been tested using MCUXpresso SDK
26832683
DCP support (hardware acceleration for SHA256 operations) can be enabled by using PKA=1 in the configuration file.
26842684

26852685
You can also get the SDK and CMSIS bundles using these repositories:
2686-
* https://github.com/nxp-mcuxpresso/mcux-sdk
2686+
* https://github.com/nxp-mcuxpresso/mcuxsdk-manifests
26872687
* https://github.com/nxp-mcuxpresso/CMSIS_5
26882688
Use MCUXSDK=1 with this option, since the pack paths are different.
26892689

26902690
Example:
26912691
```
26922692
MCUXSDK?=1
2693-
MCUXPRESSO?=$(PWD)/../mcux-sdk
2694-
MCUXPRESSO_DRIVERS?=$(MCUXPRESSO)/devices/MIMXRT1062
2693+
MCUXPRESSO?=$(PWD)/../NXP/mcuxpresso-sdk/mcuxsdk
2694+
MCUXPRESSO_DRIVERS?=$(MCUXPRESSO)/devices/RT/RT1060/MIMXRT1062
26952695
MCUXPRESSO_CMSIS?="$(PWD)/../CMSIS_5/CMSIS"
26962696
```
26972697

hal/imx_rt.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@
4040
#define USE_GET_CONFIG
4141
#endif
4242
#ifdef CPU_MIMXRT1062DVL6A
43-
#include "evkmimxrt1060_flexspi_nor_config.h"
43+
#include "evkbmimxrt1060_flexspi_nor_config.h"
4444
#define USE_GET_CONFIG
4545
#endif
4646
#ifdef CPU_MIMXRT1062DVL6B
4747
#include "evkbmimxrt1060_flexspi_nor_config.h"
4848
#define USE_GET_CONFIG
4949
#endif
5050
#ifdef CPU_MIMXRT1061CVJ5B
51-
#include "evkmimxrt1060_flexspi_nor_config.h"
51+
#include "evkbmimxrt1060_flexspi_nor_config.h"
5252
#define USE_GET_CONFIG
5353
#endif
5454
#ifdef CPU_MIMXRT1052DVJ6B

test-app/Makefile

Lines changed: 37 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -425,9 +425,9 @@ ifeq ($(TARGET),imx_rt)
425425
$(MCUXPRESSO)/drivers/common/fsl_common.o \
426426
$(MCUXPRESSO)/drivers/common/fsl_common_arm.o \
427427
$(MCUXPRESSO)/drivers/flexspi/fsl_flexspi.o \
428-
$(MCUXPRESSO)/utilities/str/fsl_str.o \
429428
$(MCUXPRESSO)/drivers/lpuart/fsl_lpuart.o \
430-
$(MCUXPRESSO)/utilities/debug_console/fsl_debug_console.o
429+
$(MCUXPRESSO)/components/str/fsl_str.o \
430+
$(MCUXPRESSO)/components/debug_console/fsl_debug_console.o
431431
else
432432
APP_OBJS+=\
433433
$(MCUXPRESSO_DRIVERS)/drivers/fsl_gpio.o \
@@ -441,27 +441,52 @@ ifeq ($(TARGET),imx_rt)
441441
endif
442442

443443
ifeq ($(MCUXPRESSO_CPU),MIMXRT1042XJM5B)
444-
CFLAGS+=-I$(MCUXPRESSO_DRIVERS)/project_template/ \
445-
-I$(MCUXPRESSO)/boards/evkmimxrt1040/xip/
444+
ifeq ($(MCUXSDK),1)
445+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkmimxrt1040/project_template \
446+
-I$(MCUXPRESSO)/examples/_boards/evkmimxrt1040/xip/
447+
else
448+
CFLAGS+=-I$(MCUXPRESSO_DRIVERS)/project_template/ \
449+
-I$(MCUXPRESSO)/boards/evkmimxrt1040/xip/
450+
endif
446451
APP_OBJS+=$(MCUXPRESSO_DRIVERS)/system_MIMXRT1042.o
447452
else ifeq ($(MCUXPRESSO_CPU),MIMXRT1052DVJ6B)
448-
CFLAGS+=-I$(MCUXPRESSO_DRIVERS)/project_template/ \
449-
-I$(MCUXPRESSO)/boards/evkmimxrt1050/xip/
453+
ifeq ($(MCUXSDK),1)
454+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkbimxrt1050/project_template \
455+
-I$(MCUXPRESSO)/examples/_boards/evkbimxrt1050/xip/
456+
else
457+
CFLAGS+=-I$(MCUXPRESSO_DRIVERS)/project_template/ \
458+
-I$(MCUXPRESSO)/boards/evkmimxrt1050/xip/
459+
endif
450460
APP_OBJS+=$(MCUXPRESSO_DRIVERS)/system_MIMXRT1052.o
451461
else
452462
ifeq ($(MCUXPRESSO_CPU),MIMXRT1062DVL6A)
453-
CFLAGS+=-I$(MCUXPRESSO_DRIVERS)/project_template/ \
454-
-I$(MCUXPRESSO)/boards/evkmimxrt1060/xip/
463+
ifeq ($(MCUXSDK),1)
464+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkmimxrt1060/project_template \
465+
-I$(MCUXPRESSO)/examples/_boards/evkmimxrt1060/xip/
466+
else
467+
CFLAGS+=-I$(MCUXPRESSO_DRIVERS)/project_template/ \
468+
-I$(MCUXPRESSO)/boards/evkmimxrt1060/xip/
469+
endif
455470
APP_OBJS+=$(MCUXPRESSO_DRIVERS)/system_MIMXRT1062.o
456471
endif
457472
ifeq ($(MCUXPRESSO_CPU),MIMXRT1062DVL6B)
458-
CFLAGS+=-I$(MCUXPRESSO_DRIVERS)/project_template/ \
459-
-I$(MCUXPRESSO)/boards/evkbmimxrt1060/xip/
473+
ifeq ($(MCUXSDK),1)
474+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkbmimxrt1060/project_template \
475+
-I$(MCUXPRESSO)/examples/_boards/evkbmimxrt1060/xip/
476+
else
477+
CFLAGS+=-I$(MCUXPRESSO_DRIVERS)/project_template/ \
478+
-I$(MCUXPRESSO)/boards/evkbmimxrt1060/xip/
479+
endif
460480
APP_OBJS+=$(MCUXPRESSO_DRIVERS)/system_MIMXRT1062.o
461481
endif
462482
ifeq ($(MCUXPRESSO_CPU),MIMXRT1064DVL6A)
463-
CFLAGS+=-I$(MCUXPRESSO_DRIVERS)/project_template/ \
464-
-I$(MCUXPRESSO)/boards/evkmimxrt1064/xip/
483+
ifeq ($(MCUXSDK),1)
484+
CFLAGS+=-I$(MCUXPRESSO)/examples/_boards/evkmimxrt1064/project_template \
485+
-I$(MCUXPRESSO)/examples/_boards/evkmimxrt1064/xip/
486+
else
487+
CFLAGS+=-I$(MCUXPRESSO_DRIVERS)/project_template/ \
488+
-I$(MCUXPRESSO)/boards/evkmimxrt1064/xip/
489+
endif
465490
APP_OBJS+=$(MCUXPRESSO_DRIVERS)/system_MIMXRT1064.o
466491
endif
467492
endif

0 commit comments

Comments
 (0)