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
NXP MCXA153 is a Cortex-M33 microcontroller running at 96MHz.
3221
3221
The support has been tested using FRDM-MCXA153 with the onboard MCU-Link configured in JLink mode.
3222
3222
3223
-
This requires the MCXA SDK from the NXP MCUXpresso SDK Builder. We tested using `SDK_2.14.2_MCXA153` and placed into `../NXP/MCXA153` by default (see .config or set with `MCUXPRESSO`).
3224
-
MCUXpresso SDK Builder
3223
+
This requires the [NXP MCUXpresso SDK](https://github.com/nxp-mcuxpresso/mcuxsdk-manifests),
3224
+
placed into `../NXP/mcuxpresso-sdk` by default (see .config or set with
3225
+
`MCUXPRESSO`).
3226
+
3227
+
To set up the MCUXpresso SDK:
3228
+
3229
+
```
3230
+
cd ../NXP
3231
+
3232
+
# Install west
3233
+
python -m venv west-venv
3234
+
source west-venv/bin/activate
3235
+
pip install west
3236
+
3237
+
# Set up the repository
3238
+
west init -m https://github.com/nxp-mcuxpresso/mcuxsdk-manifests.git mcuxpresso-sdk
3239
+
cd mcuxpresso-sdk
3240
+
west update_board --set board frdmmcxa153
3241
+
3242
+
deactivate
3243
+
```
3225
3244
3226
3245
### MCX A: Configuring and compiling
3227
3246
@@ -3307,8 +3326,28 @@ c
3307
3326
NXP MCXW716 is a Cortex-M33 microcontroller running at 96MHz.
3308
3327
The support has been tested using FRDM-MCXW716 with the onboard MCU-Link configured in JLink mode.
3309
3328
3310
-
This requires the MCXW SDK from the NXP MCUXpresso SDK Builder. We tested using [mcux-sdk](https://github.com/nxp-mcuxpresso/mcux-sdk) and [CMSIS_5](https://github.com/nxp-mcuxpresso/CMSIS_5)
3311
-
placed under "../NXP". Adjust the MCUXPRESSO and MCUXPRESSO_CMSIS variables in your .config file according to your paths.
3329
+
This requires the NXP MCUXpresso SDK. We tested using [mcuxsdk-manifests](https://github.com/nxp-mcuxpresso/mcuxsdk-manifests)
3330
+
and [CMSIS_5](https://github.com/nxp-mcuxpresso/CMSIS_5) placed under "../NXP".
3331
+
Adjust the MCUXPRESSO and MCUXPRESSO_CMSIS variables in your .config file
3332
+
according to your paths.
3333
+
3334
+
To set up the MCUXpresso SDK:
3335
+
3336
+
```
3337
+
cd ../NXP
3338
+
3339
+
# Install west
3340
+
python -m venv west-venv
3341
+
source west-venv/bin/activate
3342
+
pip install west
3343
+
3344
+
# Set up the repository
3345
+
west init -m https://github.com/nxp-mcuxpresso/mcuxsdk-manifests.git mcuxpresso-sdk
0 commit comments