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: docs/Targets.md
+80Lines changed: 80 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@ This README describes configuration of supported targets.
19
19
*[NXP LPC54xxx](#nxp-lpc54xxx)
20
20
*[NXP LS1028A](#nxp-ls1028a)
21
21
*[NXP MCXA153](#nxp-mcxa153)
22
+
*[NXP MCXW716C](#nxp-mcxw716c)
22
23
*[NXP P1021 PPC](#nxp-qoriq-p1021-ppc)
23
24
*[NXP T1024 PPC](#nxp-qoriq-t1024-ppc)
24
25
*[NXP T2080 PPC](#nxp-qoriq-t2080-ppc)
@@ -2241,6 +2242,85 @@ mon reset
2241
2242
c
2242
2243
```
2243
2244
2245
+
## NXP MCXW716
2246
+
2247
+
NXP MCXW716 is a Cortex-M33 microcontroller running at 96MHz.
2248
+
The support has been tested using FRDM-MCXW716 with the onboard MCU-Link configured in JLink mode.
2249
+
2250
+
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)`
2251
+
placed under "../NXP". Adjust the MCUXPRESSO and MCUXPRESSO_CMSIS variables in your .config file according to your paths.
2252
+
2253
+
### MCX W: Configuring and compiling
2254
+
2255
+
Copy the example configuration file and build with make:
2256
+
2257
+
```sh
2258
+
cp config/examples/mcxw.config .config`
2259
+
make
2260
+
```
2261
+
2262
+
### MCX W: Loading the firmware
2263
+
2264
+
The NXP Freedom MCX W board debugger comes loaded with MCU Link, but it can be updated to JLink. See https://docs.nxp.com/bundle/UM12012/page/topics/Updating_MCU_Link_firmware.html
2265
+
2266
+
Use JLinkExe tool to upload the initial firmware: `JLinkExe -if swd -Device MCXW716`
2267
+
2268
+
At the Jlink prompt, type:
2269
+
2270
+
```
2271
+
loadbin factory.bin 0
2272
+
Downloading file [factory.bin]...
2273
+
J-Link: Flash download: Bank 0 @ 0x00000000: Skipped. Contents already match
2274
+
O.K.
2275
+
```
2276
+
2277
+
Reset or power cycle board.
2278
+
2279
+
Once wolfBoot has performed validation of the partition and booted the D15 Green LED on P3_13 will illuminate.
0 commit comments