You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/learning-paths/embedded-and-microcontrollers/observing-ethos-u-on-nxp/9-build-executorch-runner-for-cm33 copy.md
+63-8Lines changed: 63 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,28 +10,54 @@ layout: learningpathall
10
10
11
11
Install the MCUXpresso extension in VS Code:
12
12
13
+
{{< tabpane code=false >}}
14
+
{{< tab header="Windows/Linux" >}}
13
15
1. Open VS Code and press `Ctrl+Shift+X` to open Extensions
14
16
2. Search for "MCUXpresso for VS Code"
15
17
3. Click **Install** on the NXP extension
18
+
{{< /tab >}}
19
+
{{< tab header="macOS" >}}
20
+
1. Open VS Code and press `Cmd+Shift+X` to open Extensions
3. Set the toolchain path to: `/opt/arm-gnu-toolchain-14.2.rel1-x86_64-arm-none-eabi/bin`
33
+
{{< /tab >}}
34
+
{{< tab header="macOS" >}}
35
+
1. Open Settings with `Cmd+,`
36
+
2. Search for **MCUXpresso: Toolchain**
37
+
3. Set the toolchain path to: `/opt/arm-gnu-toolchain-14.2.rel1-x86_64-arm-none-eabi/bin`
38
+
{{< /tab >}}
39
+
{{< /tabpane >}}
28
40
29
41
Install the MCUXpresso SDK for FRDM-MIMX93:
30
42
43
+
{{< tabpane code=false >}}
44
+
{{< tab header="Windows/Linux" >}}
31
45
1. Open Command Palette: `Ctrl+Shift+P`
32
46
2. Type: **MCUXpresso: Install MCUXpresso SDK**
33
-
3. Search for "FRDM-MIMX93"
47
+
3. Search for "FRDM-MIMX93" or select **MCIMX93-EVK**
34
48
4. Select the latest SDK and click **Install**
49
+
{{< /tab >}}
50
+
{{< tab header="macOS" >}}
51
+
1. Open Command Palette: `Cmd+Shift+P`
52
+
2. Type: **MCUXpresso: Install MCUXpresso SDK**
53
+
3. Search for "FRDM-MIMX93" or select **MCIMX93-EVK**
54
+
4. Select the latest SDK and click **Install**
55
+
{{< /tab >}}
56
+
{{< /tabpane >}}
57
+
58
+
{{% notice Note %}}
59
+
If the FRDM-MIMX93 development board is not listed in the current MCUXpresso SDK catalog, you can alternatively select **MCIMX93-EVK** as they share the same i.MX93 SoC with Cortex-M33 core architecture. The SDK compatibility ensures seamless development across both platforms.
60
+
{{% /notice %}}
35
61
36
62
## Clone the executor_runner repository
37
63
@@ -84,10 +110,20 @@ code .
84
110
85
111
Initialize the MCUXpresso project:
86
112
113
+
{{< tabpane code=false >}}
114
+
{{< tab header="Windows/Linux" >}}
87
115
1. Press `Ctrl+Shift+P` to open Command Palette
88
116
2. Type: **MCUXpresso: Import Repository**
89
117
3. Select the current folder
90
118
4. Choose **MIMX9352_cm33** as the target processor
119
+
{{< /tab >}}
120
+
{{< tab header="macOS" >}}
121
+
1. Press `Cmd+Shift+P` to open Command Palette
122
+
2. Type: **MCUXpresso: Import Repository**
123
+
3. Select the current folder
124
+
4. Choose **MIMX9352_cm33** as the target processor
125
+
{{< /tab >}}
126
+
{{< /tabpane >}}
91
127
92
128
VS Code generates the MCUXpresso configuration.
93
129
@@ -115,16 +151,35 @@ If you see "region RAM overflowed" errors during build, reduce these pool sizes.
0 commit comments