Skip to content

Commit 80d7e84

Browse files
[NXP][docs] Put all NXP guides in nxp folder and update paths (project-chip#33092)
* [NXP][docs] Put all NXP guides in nxp folder and update paths * Restyled by prettier-markdown --------- Co-authored-by: Restyled.io <commits@restyled.io>
1 parent 22188b6 commit 80d7e84

File tree

26 files changed

+74
-56
lines changed

26 files changed

+74
-56
lines changed

docs/guides/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
- [nRF Connect - Factory Data Configuration](./nrfconnect_factory_data_configuration.md)
1919
- [nRF Connect - Platform Overview](./nrfconnect_platform_overview.md)
2020
- [nRF Connect - Software Update](./nrfconnect_examples_software_update.md)
21-
- [NXP - Android Commissioning](./nxp_k32w_android_commissioning.md)
22-
- [NXP - Linux Examples](./nxp_imx8m_linux_examples.md)
21+
- [NXP - Getting Started Guide](./nxp/README.md)
2322
- [Silicon Labs - Documentation](https://siliconlabs.github.io/matter/latest/index.html)
2423
- [Silicon Labs - Getting Started](./silabs_getting_started.md)
2524
- [Silicon Labs - Software Update](./silabs_efr32_software_update.md)

docs/guides/darwin.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ Example:
259259
- [mbedOS](/examples/all-clusters-app/mbed/README.md)
260260
- [nRF Connect All Clusters](./nrfconnect_examples_configuration.md)
261261
- [nRF Connect Pump](/examples/pump-app/nrfconnect/README.md)
262-
- [NXP Examples](./nxp_imx8m_linux_examples.md)
262+
- [NXP Examples](./nxp/nxp_imx8m_linux_examples.md)
263263
- [NXP](/examples/all-clusters-app/nxp/mw320/README.md)
264264
- [Infineon CYW30739 Lighting](/examples/lighting-app/infineon/cyw30739/README.md)
265265
- [Infineon PSoC6](/examples/all-clusters-app/infineon/psoc6/README.md)

docs/guides/index.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and features.
1010
1111
*
1212
esp32/README
13+
nxp/README
1314
ti/ti_platform_overview
1415
```
1516

@@ -34,9 +35,7 @@ ti/ti_platform_overview
3435
- [nRF Connect - Factory Data Configuration](./nrfconnect_factory_data_configuration.md)
3536
- [nRF Connect - Platform Overview](./nrfconnect_platform_overview.md)
3637
- [nRF Connect - Software Update](./nrfconnect_examples_software_update.md)
37-
- [NXP - Android Commissioning](./nxp_k32w_android_commissioning.md)
38-
- [NXP - Linux Examples](./nxp_imx8m_linux_examples.md)
39-
- [NXP - Manufacturing Data](./nxp_manufacturing_flow.md)
38+
- [NXP - Getting Started Guide](./nxp/README.md)
4039
- [Silicon Labs - Documentation](https://siliconlabs.github.io/matter/latest/index.html)
4140
- [Silicon Labs - Getting Started](./silabs_getting_started.md)
4241
- [Silicon Labs - Software Update](./silabs_efr32_software_update.md)

docs/guides/nxp/README.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
```{toctree}
2+
:glob:
3+
:maxdepth: 1
4+
5+
*
6+
```
7+
8+
# NXP Getting Started Guide
9+
10+
- [NXP - Android Commissioning](nxp_k32w_android_commissioning.md)
11+
- [NXP - Linux Examples](nxp_imx8m_linux_examples.md)
12+
- [NXP - Manufacturing Data](nxp_manufacturing_flow.md)
13+
- [NXP - RW61x OTA Software Update Guide](nxp_rw61x_ota_software_update.md)
14+
- [NXP - Zephyr OTA Software Update Guide](nxp_zephyr_ota_software_update.md)

docs/guides/nxp_imx8m_linux_examples.md docs/guides/nxp/nxp_imx8m_linux_examples.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ This document describes how to build below Linux examples with the NXP embedded
44
Linux Yocto SDK and then run the output executable files on the **NXP i.MX 8M**
55
**Mini EVK** development board.
66

7-
- [CHIP Linux All-clusters Example](../../examples/all-clusters-app/linux/README.md)
8-
- [CHIP Linux Lighting Example](../../examples/lighting-app/linux/README.md)
7+
- [CHIP Linux All-clusters Example](../../../examples/all-clusters-app/linux/README.md)
8+
- [CHIP Linux Lighting Example](../../../examples/lighting-app/linux/README.md)
99
- [CHIP Linux Thermostat Example](https://github.com/project-chip/connectedhomeip/tree/master/examples/thermostat/linux)
10-
- [CHIP Linux CHIP-tool Example](../../examples/chip-tool/README.md)
11-
- [CHIP Linux OTA-provider Example](../../examples/ota-provider-app/linux/README.md)
10+
- [CHIP Linux CHIP-tool Example](../../../examples/chip-tool/README.md)
11+
- [CHIP Linux OTA-provider Example](../../../examples/ota-provider-app/linux/README.md)
1212

1313
This document has been tested on:
1414

@@ -234,8 +234,8 @@ Thermostat-app is used as an example below.
234234

235235
In order to test the CHIP protocol functions, another device on the same
236236
network is needed to run the
237-
[ChipDeviceController](../../src/controller/python) tool to communicate with
238-
the **i.MX 8M Mini EVK**.
237+
[ChipDeviceController](../../../src/controller/python) tool to communicate
238+
with the **i.MX 8M Mini EVK**.
239239

240240
The ChipDeviceController can be a laptop / workstation. Bluetooth
241241
functionality is mandatory on this device.
@@ -252,7 +252,7 @@ Thermostat-app is used as an example below.
252252
- Boot up Ubuntu on the Raspberry Pi
253253
- Clone this connectedhomeip project
254254
- Follow Python ChipDeviceController
255-
[README.md](../../src/controller/python/README.md) document. Refer to
255+
[README.md](../../../src/controller/python/README.md) document. Refer to
256256
the "Building and installing" part to build the tool.
257257

258258
- Running
@@ -283,7 +283,7 @@ Thermostat-app is used as an example below.
283283
/home/root/thermostat-app --ble-device 0 --wifi # The bluetooth device used is hci0 and support wifi network
284284
```
285285

286-
- Run [ChipDeviceController](../../src/controller/python) on the
286+
- Run [ChipDeviceController](../../../src/controller/python) on the
287287
controller device to communicate with **i.MX 8M Mini EVK** running the
288288
example.
289289

docs/guides/nxp_k32w_android_commissioning.md docs/guides/nxp/nxp_k32w_android_commissioning.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Commissioning NXP K32W using Android CHIPTool
22

33
This article describes how to use
4-
[CHIPTool](../../examples/android/CHIPTool/README.md) for Android smartphones to
5-
commission an NXP K32W061 DK6 running
4+
[CHIPTool](../../../examples/android/CHIPTool/README.md) for Android smartphones
5+
to commission an NXP K32W061 DK6 running
66
[NXP K32W Light Example Application](#building-and-programming-nxp-k32w-light-example-application)
77
onto a CHIP-enabled Thread network.
88

@@ -47,7 +47,7 @@ The following diagram shows the connectivity between network components required
4747
to allow communication between devices running the CHIPTool and Light
4848
applications:
4949

50-
![nxp_hw_connectivity](../../examples/platform/nxp/k32w/k32w0/doc/images/nxp_hw_connectivity.JPG)
50+
![nxp_hw_connectivity](../../../examples/platform/nxp/k32w/k32w0/doc/images/nxp_hw_connectivity.JPG)
5151

5252
<hr>
5353

@@ -348,15 +348,15 @@ To make your PC work as a Thread Border Router, complete the following tasks:
348348
## Building and programming NXP K32W Light Example Application
349349
350350
See
351-
[NXP K32W Light Example Application README](../../examples/lighting-app/nxp/k32w/k32w0/README.md)
351+
[NXP K32W Light Example Application README](../../../examples/lighting-app/nxp/k32w/k32w0/README.md)
352352
to learn how to build and program the light example onto an K32W061 DK6.
353353
354354
<hr>
355355
356356
## Building and installing Android CHIPTool
357357
358358
To build the CHIPTool application for your smartphone, read
359-
[Android CHIPTool README](../../examples/android/CHIPTool/README.md).
359+
[Android CHIPTool README](../../../examples/android/CHIPTool/README.md).
360360
361361
After building, install the application by completing the following steps:
362362
@@ -396,7 +396,7 @@ CHIPTool is now ready to be used for commissioning.
396396
397397
3. Navigate to the _Form_ tab then push the _Form_ button using the default
398398
parameters:
399-
![nxp_form_nwk](../../examples/platform/nxp/k32w/k32w0/doc/images/form_web.JPG)
399+
![nxp_form_nwk](../../../examples/platform/nxp/k32w/k32w0/doc/images/form_web.JPG)
400400
401401
4. The message _Form operation is successful_ should be display after a few
402402
seconds.
@@ -430,7 +430,7 @@ To prepare the accessory device for commissioning, complete the following steps:
430430
431431
1. Make sure that JP4 and JP7 jumpers are in leftmost position and a mini-USB
432432
cable is connected between the LPC connector and PC
433-
![nxp_connectors](../../examples/platform/nxp/k32w/k32w0/doc/images/k32w-dk6-connectors.jpg)
433+
![nxp_connectors](../../../examples/platform/nxp/k32w/k32w0/doc/images/k32w-dk6-connectors.jpg)
434434
435435
2. Use a terminal emulator (e.g.: Putty) to connect to the UART console of the
436436
accessory device. Use a baudrate of 115200.
@@ -466,14 +466,14 @@ section, complete the following steps:
466466
progress with scanning, connection, and pairing. At the end of this process,
467467
the Thread network settings screen appears.
468468
469-
![chiptool_main_screen](../../examples/platform/nxp/k32w/k32w0/doc/images/chiptool_main_screen.png)
469+
![chiptool_main_screen](../../../examples/platform/nxp/k32w/k32w0/doc/images/chiptool_main_screen.png)
470470
471471
6. In the Thread network settings screen, use the default settings and tap the
472472
_SAVE NETWORK_ button to send a Thread provisioning message to the accessory
473473
device. You will see the "Network provisioning completed" message when the
474474
accessory device successfully joins the Thread network.
475475
476-
![chiptool_credentials](../../examples/platform/nxp/k32w/k32w0/doc/images/thread_credentials.png)
476+
![chiptool_credentials](../../../examples/platform/nxp/k32w/k32w0/doc/images/thread_credentials.png)
477477
478478
<hr>
479479
@@ -483,7 +483,7 @@ section, complete the following steps:
483483
the provisioning is completed successfully and you are connected to the
484484
device.
485485
486-
![on_off_cluster.png](../../examples/platform/nxp/k32w/k32w0/doc/images/on_off_cluster.png)
486+
![on_off_cluster.png](../../../examples/platform/nxp/k32w/k32w0/doc/images/on_off_cluster.png)
487487
488488
2. Verify that the text box on the screen is not empty and contains the IPv6
489489
address of the accessory device.

docs/guides/nxp_rw61x_ota_software_update.md docs/guides/nxp/nxp_rw61x_ota_software_update.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ J-Link > erase 0x8000000, 0x88a0000
8989
- Using MCUXPresso, import the `mcuboot_opensource` demo example from the SDK
9090
previously downloaded. The example can be found under the `ota_examples`
9191
folder.
92-
![mcuboot_demo](../../examples/platform/nxp/rt/rw61x/doc/images/mcuboot_demo.PNG)
92+
![mcuboot_demo](../../../examples/platform/nxp/rt/rw61x/doc/images/mcuboot_demo.PNG)
9393
- Before building the demo example, it should be specified that the
9494
application to be run by the bootloader is monolithic. As a result, only one
9595
image will be upgraded by the bootloader. This can be done by defining
@@ -99,7 +99,7 @@ J-Link > erase 0x8000000, 0x88a0000
9999
Right click on the Project -> Properties -> C/C++ Build -> Settings -> Tool Settings -> MCU C Compiler -> Preprocessor -> Add "MONOLITHIC_APP=1" in the Defined Symbols
100100
```
101101

102-
![rw610_mcuboot_monolithic](../../examples/platform/nxp/rt/rw61x/doc/images/mcuboot_monolithic_app.PNG)
102+
![rw610_mcuboot_monolithic](../../../examples/platform/nxp/rt/rw61x/doc/images/mcuboot_monolithic_app.PNG)
103103

104104
- Build the demo example project.
105105

@@ -149,7 +149,7 @@ The image must have the following format :
149149
signature, the upgrade type, the swap status...
150150

151151
The all-clusters application can be generated using the instructions from the
152-
[README.md 'Building'](../../examples/all-clusters-app/nxp/rt/rw61x/README.md#building)
152+
[README.md 'Building'](../../../examples/all-clusters-app/nxp/rt/rw61x/README.md#building)
153153
section. The application is automatically linked to be executed from the primary
154154
image partition, taking into consideration the offset imposed by mcuboot.
155155

@@ -242,8 +242,8 @@ instructions below describe the procedure step-by-step.
242242

243243
Setup example :
244244

245-
- [Chip-tool](../../examples/chip-tool/README.md) application running on the
246-
RPi.
245+
- [Chip-tool](../../../examples/chip-tool/README.md) application running on
246+
the RPi.
247247
- OTA Provider application built on the same RPi (as explained below).
248248
- RW61x board programmed with the example application (with the instructions
249249
above).

docs/guides/nxp_zephyr_ota_software_update.md docs/guides/nxp/nxp_zephyr_ota_software_update.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ Update. The instructions below describes the procedure step-by-step.
178178

179179
Setup example :
180180

181-
- [Chip-tool](../../examples/chip-tool/README.md) application running on the
182-
RPi.
181+
- [Chip-tool](../../../examples/chip-tool/README.md) application running on
182+
the RPi.
183183
- OTA Provider application built on the same RPi (as explained below).
184184
- Board programmed with the example application (with the instructions above).
185185

examples/air-purifier-app/linux/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ Temperature Sensor and Endpoint 5 is a Thermostat.
1111

1212
To cross-compile this example on x64 host and run on **NXP i.MX 8M Mini**
1313
**EVK**, see the associated
14-
[README document](../../../docs/guides/nxp_imx8m_linux_examples.md) for details.
14+
[README document](../../../docs/guides/nxp/nxp_imx8m_linux_examples.md) for
15+
details.
1516

1617
<hr>
1718

examples/air-quality-sensor-app/linux/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ for Raspberry Pi Desktop 20.10 (aarch64)**
77

88
To cross-compile this example on x64 host and run on **NXP i.MX 8M Mini**
99
**EVK**, see the associated
10-
[README document](../../../docs/guides/nxp_imx8m_linux_examples.md) for details.
10+
[README document](../../../docs/guides/nxp/nxp_imx8m_linux_examples.md) for
11+
details.
1112

1213
<hr>
1314

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
To cross-compile this example on x64 host and run on **NXP i.MX 8M Mini**
22
**EVK**, see the associated
3-
[README document](../../../../../docs/guides/nxp_imx8m_linux_examples.md) for
4-
details.
3+
[README document](../../../../../docs/guides/nxp/nxp_imx8m_linux_examples.md)
4+
for details.

examples/all-clusters-app/nxp/rt/rw61x/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -139,16 +139,16 @@ Optional GN options that can be added when building an application:
139139
- To build with the option to have Matter certificates/keys pre-loaded in a
140140
specific flash area the argument `chip_with_factory_data=1` must be added to
141141
the _gn gen_ command. (for more information see
142-
[Guide for writing manufacturing data on NXP devices](../../../../../docs/guides/nxp_manufacturing_flow.md).
142+
[Guide for writing manufacturing data on NXP devices](../../../../../docs/guides/nxp/nxp_manufacturing_flow.md).
143143
- To build the application with the OTA Requestor enabled, the arguments
144144
`chip_enable_ota_requestor=true no_mcuboot=false` must be added to the _gn
145145
gen_ command. (More information about the OTA Requestor feature in
146-
[OTA Requestor README](../../../../../docs/guides/nxp_rw61x_ota_software_update.md)
146+
[OTA Requestor README](../../../../../docs/guides/nxp/nxp_rw61x_ota_software_update.md)
147147

148148
## Manufacturing data
149149

150150
See
151-
[Guide for writing manufacturing data on NXP devices](../../../../../docs/guides/nxp_manufacturing_flow.md)
151+
[Guide for writing manufacturing data on NXP devices](../../../../../docs/guides/nxp/nxp_manufacturing_flow.md)
152152

153153
Other comments:
154154

@@ -374,4 +374,4 @@ Done
374374
Over-The-Air software updates are supported with the RW61x all-clusters example.
375375
The process to follow in order to perform a software update is described in the
376376
dedicated guide
377-
['Matter Over-The-Air Software Update with NXP RW61x example applications'](../../../../../docs/guides/nxp_rw61x_ota_software_update.md).
377+
['Matter Over-The-Air Software Update with NXP RW61x example applications'](../../../../../docs/guides/nxp/nxp_rw61x_ota_software_update.md).
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
To cross-compile this example on x64 host and run on **NXP i.MX 8M Mini**
22
**EVK**, see the associated
3-
[README document](../../../../../docs/guides/nxp_imx8m_linux_examples.md) for
4-
details.
3+
[README document](../../../../../docs/guides/nxp/nxp_imx8m_linux_examples.md)
4+
for details.

examples/contact-sensor-app/nxp/k32w/k32w0/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ Please use the following build args:
348348
## Manufacturing data
349349
350350
See
351-
[Guide for writing manufacturing data on NXP devices](../../../../../docs/guides/nxp_manufacturing_flow.md).
351+
[Guide for writing manufacturing data on NXP devices](../../../../../docs/guides/nxp/nxp_manufacturing_flow.md).
352352
353353
There are factory data generated binaries available in
354354
examples/platform/nxp/k32w/k32w0/scripts/demo_generated_factory_data folder.

examples/contact-sensor-app/nxp/k32w/k32w1/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ using Fibonacci backoff for retries pacing.
185185
Use `chip_with_factory_data=1` in the gn build command to enable factory data.
186186

187187
For a full guide on manufacturing flow, please see
188-
[Guide for writing manufacturing data on NXP devices](../../../../../docs/guides/nxp_manufacturing_flow.md).
188+
[Guide for writing manufacturing data on NXP devices](../../../../../docs/guides/nxp/nxp_manufacturing_flow.md).
189189

190190
## Flashing
191191

examples/dishwasher-app/linux/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ for Raspberry Pi Desktop 20.10 (aarch64)**
77

88
To cross-compile this example on x64 host and run on **NXP i.MX 8M Mini**
99
**EVK**, see the associated
10-
[README document](../../../docs/guides/nxp_imx8m_linux_examples.md) for details.
10+
[README document](../../../docs/guides/nxp/nxp_imx8m_linux_examples.md) for
11+
details.
1112

1213
<hr>
1314

examples/energy-management-app/linux/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ for Raspberry Pi Desktop 20.10 (aarch64)**
77

88
To cross-compile this example on x64 host and run on **NXP i.MX 8M Mini**
99
**EVK**, see the associated
10-
[README document](../../../docs/guides/nxp_imx8m_linux_examples.md) for details.
10+
[README document](../../../docs/guides/nxp/nxp_imx8m_linux_examples.md) for
11+
details.
1112

1213
<hr>
1314

examples/lighting-app/linux/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ Raspberry Pi Desktop 20.10 (aarch64)**
77

88
To cross-compile this example on x64 host and run on **NXP i.MX 8M Mini**
99
**EVK**, see the associated
10-
[README document](../../../docs/guides/nxp_imx8m_linux_examples.md) for details.
10+
[README document](../../../docs/guides/nxp/nxp_imx8m_linux_examples.md) for
11+
details.
1112

1213
<hr>
1314

examples/lighting-app/nxp/k32w/k32w0/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ Please use the following build args:
323323
## Manufacturing data
324324
325325
See
326-
[Guide for writing manufacturing data on NXP devices](../../../../../docs/guides/nxp_manufacturing_flow.md).
326+
[Guide for writing manufacturing data on NXP devices](../../../../../docs/guides/nxp/nxp_manufacturing_flow.md).
327327
328328
There are factory data generated binaries available in
329329
examples/platform/nxp/k32w/k32w0/scripts/demo_generated_factory_data folder.

examples/lighting-app/nxp/k32w/k32w1/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ control** cluster
187187
Use `chip_with_factory_data=1` in the gn build command to enable factory data.
188188

189189
For a full guide on manufacturing flow, please see
190-
[Guide for writing manufacturing data on NXP devices](../../../../../docs/guides/nxp_manufacturing_flow.md).
190+
[Guide for writing manufacturing data on NXP devices](../../../../../docs/guides/nxp/nxp_manufacturing_flow.md).
191191

192192
## Flashing
193193

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
To cross-compile this example on x64 host and run on **NXP i.MX 8M Mini**
22
**EVK**, see the associated
3-
[README document](../../../../../docs/guides/nxp_imx8m_linux_examples.md) for
4-
details.
3+
[README document](../../../../../docs/guides/nxp/nxp_imx8m_linux_examples.md)
4+
for details.

examples/refrigerator-app/linux/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ for Raspberry Pi Desktop 20.10 (aarch64)**
77

88
To cross-compile this example on x64 host and run on **NXP i.MX 8M Mini**
99
**EVK**, see the associated
10-
[README document](../../../docs/guides/nxp_imx8m_linux_examples.md) for details.
10+
[README document](../../../docs/guides/nxp/nxp_imx8m_linux_examples.md) for
11+
details.
1112

1213
<hr>
1314

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
To cross-compile this example on x64 host and run on **NXP i.MX 8M Mini**
22
**EVK**, see the associated
3-
[README document](../../../../../docs/guides/nxp_imx8m_linux_examples.md) for
4-
details.
3+
[README document](../../../../../docs/guides/nxp/nxp_imx8m_linux_examples.md)
4+
for details.
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
To cross-compile this example on x64 host and run on **NXP i.MX 8M Mini**
22
**EVK**, see the associated
3-
[README document](../../../../../docs/guides/nxp_imx8m_linux_examples.md) for
4-
details.
3+
[README document](../../../../../docs/guides/nxp/nxp_imx8m_linux_examples.md)
4+
for details.

scripts/tools/nxp/factory_data_generator/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# NXP Factory Data Generator
22

33
For usage of the tool, please see
4-
[Guide for writing manufacturing data on NXP devices](../../../../docs/guides/nxp_manufacturing_flow.md).
4+
[Guide for writing manufacturing data on NXP devices](../../../../docs/guides/nxp/nxp_manufacturing_flow.md).
55

66
## Tool implementation
77

0 commit comments

Comments
 (0)