@@ -31,9 +31,7 @@ NXP/Zephyr SDK.
31
31
32
32
The example supports:
33
33
34
- - Matter over Wi-Fi with BLE commissioning
35
- - Matter OTA requestor
36
- - Matter Factory Data
34
+ - Matter over Wi-Fi
37
35
38
36
The supported boards are:
39
37
@@ -51,22 +49,18 @@ Prerequisites:
51
49
- Follow instruction from [ BUILDING.md] ( ../../../../docs/guides/BUILDING.md )
52
50
to setup the Matter environment
53
51
- Follow instruction from
54
- [ Getting Started Guide] ( https://docs.zephyrproject.org/3.7.0 /develop/getting_started/index.html )
52
+ [ Getting Started Guide] ( https://docs.zephyrproject.org/latest /develop/getting_started/index.html )
55
53
to setup a Zephyr workspace, however, the west init command to use is as
56
54
follows:
57
55
58
56
``` shell
59
- $ west init zephyrproject -m https://github.com/nxp-zephyr/nxp-zsdk .git --mr zsdk_lts3
57
+ $ west init zephyrproject -m https://github.com/nxp-zephyr-ear/zephyr .git --mr zephyr_rw61x_v3.6_RFP
60
58
```
61
59
62
- > ** Note** : While some of NXP platforms are supported in Zephyr upstream, we
63
- > recommend using nxp-zsdk downstream to get access to all NXP features
64
- > that are not upstream yet.
65
- > While you can decide to use nxp-zsdk top of tree, we recommend using
66
- > a proper release tag delivered by NXP. This will ensure a certain level
67
- > of quality of the nxp-zsdk in use. Currently, we highly recommend using
68
- > the ` zsdk_lts3 ` tag, based on Zephyr 3.7 LTS release.
69
- > Reach to your NXP contact for more details.
60
+ > ** Note** : Currently, supported NXP platforms in Zephyr targeting Matter are
61
+ > not available in the official Zephyr repo, you'll have to use the NXP fork
62
+ > ` https://github.com/nxp-zephyr-ear/zephyr ` github repo. Reach to your NXP
63
+ > contact for more details.
70
64
71
65
Steps to build the example, targeting ` rd_rw612_bga ` board:
72
66
@@ -85,16 +79,15 @@ source <path to zephyr repo>/zephyr-env.sh
85
79
3 . Run west build command:
86
80
87
81
``` shell
88
- west build -b rd_rw612_bga -p auto -d build_zephyr < path to example folder>
82
+ west build -b rd_rw612_bga -p < path to example folder>
89
83
```
90
84
91
- A folder ` build_zephyr ` will be created in the same folder you run the command from.
92
- The binaries will be created in ` build_zephyr/zephyr ` with the name ` zephyr.elf ` and
93
- ` zephyr.bin ` . We recommend using the ` -d build_zephyr ` if you are building from Matter
94
- repo root folder as a build folder already exists and is tracked by git.
85
+ By default, a folder ` build ` will be created in the same folder you run the
86
+ command from. The binaries will be created in ` build/zephyr ` with the name
87
+ ` zephyr.elf ` and ` zephyr.bin ` .
95
88
96
89
You can get more details on ` west build ` with
97
- [ Zephyr's building guide] ( https://docs.zephyrproject.org/3.7.0 /develop/west/build-flash-debug.html#building-west-build )
90
+ [ Zephyr's building guide] ( https://docs.zephyrproject.org/latest /develop/west/build-flash-debug.html#building-west-build )
98
91
99
92
<a name =" flashing-and-debugging " ></a >
100
93
@@ -109,7 +102,7 @@ west flash -i <J-Link serial number>
109
102
```
110
103
111
104
You can get more details on ` west flash ` with
112
- [ Zephyr's flashing guide] ( https://docs.zephyrproject.org/3.7.0 /develop/west/build-flash-debug.html#flashing-west-flash )
105
+ [ Zephyr's flashing guide] ( https://docs.zephyrproject.org/latest /develop/west/build-flash-debug.html#flashing-west-flash )
113
106
114
107
> ** Note** : ` west flash ` will not start a debug session, it will only flash and
115
108
> reset the device
@@ -120,7 +113,7 @@ To debug a Matter with Zephyr application, you could use several methods:
120
113
121
114
- [ MCUXpresso IDE (version >= 11.6.0)] ( https://www.nxp.com/design/software/development-software/mcuxpresso-software-and-tools-/mcuxpresso-integrated-development-environment-ide:MCUXpresso-IDE )
122
115
- ` west debug `
123
- [ Zephyr's debugging guide] ( https://docs.zephyrproject.org/3.7.0 /develop/west/build-flash-debug.html#id29 )
116
+ [ Zephyr's debugging guide] ( https://docs.zephyrproject.org/latest /develop/west/build-flash-debug.html#id29 )
124
117
125
118
> ** Note** : As the build provides an elf file, any compatible debugging tool can
126
119
> be used.
0 commit comments