Skip to content

Commit 1745e6e

Browse files
[NXP][docs] Fix spellcheck errors
Signed-off-by: marius-alex-tache <marius.tache@nxp.com>
1 parent d8b806d commit 1745e6e

File tree

1 file changed

+19
-9
lines changed

1 file changed

+19
-9
lines changed

docs/guides/nxp/nxp_k32w0_ota_guide.md

+19-9
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ according to the following table:
1818
| `ssbl_multi_image_support` | true | Enable/disable multi-image OTA feature |
1919
| `ssbl_ota_entry_storage` | "OTACustomStorage_ExtFlash" | Configure custom OTA entry storage type |
2020
| `ssbl_simple_hash_verification` | false | Enable/disable simple hash verification alternative to secure boot |
21-
| `ssbl_optimize_spifi_flash` | false | Optimize SPIFI flash driver size |
22-
| `ssbl_spifi_dual_mode` | false | Enable/disable SPIFI dual mode support (e.g. used by K32W041AM variant) |
21+
| `ssbl_optimize_spifi_flash` | false | Optimize `SPIFI` flash driver size |
22+
| `ssbl_spifi_dual_mode` | false | Enable/disable `SPIFI` dual mode support (e.g. used by K32W041AM variant) |
2323
| `ssbl_version` | 0 | Set SSBL version |
24-
| `ssbl_use_redlib` | false | Enable/disable usage of redlib NXP library. If false, the build will use newlib nano |
24+
| `ssbl_use_redlib` | false | Enable/disable usage of `redlib` NXP library. If false, the build will use `newlib` nano |
2525
| `ssbl_ota_data_in_external_flash` | false | Enable/disable OTA support for application with sections stored in external flash |
2626

2727
## Simple hash verification
@@ -35,11 +35,13 @@ image for integrity check. Applications should be built with
3535
Before writing the SSBL, it it recommanded to fully erase the internal flash.
3636

3737
Using DK6Programmer utility from Windows:
38+
3839
```
3940
DK6Programmer.exe -V 5 -P 1000000 -s <COM_PORT> -e Flash
4041
```
4142

42-
Using dk6prog from SPSDK:
43+
Using dk6prog from `SPSDK`:
44+
4345
```
4446
$ dk6prog listdev
4547
This is an experimental utility. Use with caution!
@@ -56,6 +58,7 @@ Erasing memory [####################################] 100%
5658
`chip-k32w0x-ssbl.bin` must be written at address 0 in the internal flash:
5759

5860
Using DK6Programmer utility from Windows:
61+
5962
```
6063
DK6Programmer.exe -V2 -s <COM_PORT> -P 1000000 -Y -p FLASH@0x00="chip-k32w0x-ssbl.bin"
6164
```
@@ -68,7 +71,7 @@ $ dk6prog -d DN038ZH3 write 0 ~/path/to/bin/chip-k32w0x-ssbl.bin
6871
This is an experimental utility. Use with caution!
6972
7073
Writing memory [####################################] 100%
71-
Writen 7890 bytes to memory ID 0 at address 0x0
74+
Written 7890 bytes to memory ID 0 at address 0x0
7275
```
7376

7477
### Writing the PSECT
@@ -115,18 +118,20 @@ This is the list of all supported partitions:
115118
First, image directory 0 (SSBL partition) must be written:
116119

117120
Using DK6Programmer utility from Windows:
121+
118122
```
119123
DK6Programmer.exe -V5 -s <COM port> -P 1000000 -w image_dir_0=0000000010000000
120124
```
121125

122126
Using dk6prog from SPSDK:
127+
123128
```
124129
$ dk6prog -d DN038ZH3 write 0x160 [[0000000010000000]] 8 PSECT
125130
126131
This is an experimental utility. Use with caution!
127132
128133
Writing memory [####################################] 100%
129-
Writen 8 bytes to memory ID PSECT at address 0x160
134+
Written 8 bytes to memory ID PSECT at address 0x160
130135
```
131136

132137
Here is the interpretation of the fields:
@@ -146,13 +151,14 @@ DK6Programmer.exe -V5 -s <COM port> -P 1000000 -w image_dir_1=00400000C9040101
146151
```
147152

148153
Using dk6prog from SPSDK:
154+
149155
```
150156
$ dk6prog -d DN038ZH3 write 0x168 [[00400000C9040101]] 8 PSECT
151157
152158
This is an experimental utility. Use with caution!
153159
154160
Writing memory [####################################] 100%
155-
Writen 8 bytes to memory ID PSECT at address 0x168
161+
Written 8 bytes to memory ID PSECT at address 0x168
156162
```
157163

158164
Here is the interpretation of the fields:
@@ -180,18 +186,20 @@ The programming method will change:
180186

181187
* Writing image directory 1 should change to
182188
Using DK6Programmer utility from Windows:
189+
183190
```
184191
DK6Programmer.exe -V5 -s <COM port> -P 1000000 -w image_dir_1=00200000D9040101
185192
```
186193
187194
Using dk6prog from SPSDK:
195+
188196
```
189197
$ dk6prog -d DN038ZH3 write 0x168 [[00200000D9040101]] 8 PSECT
190198
191199
This is an experimental utility. Use with caution!
192200
193201
Writing memory [####################################] 100%
194-
Writen 8 bytes to memory ID PSECT at address 0x168
202+
Written 8 bytes to memory ID PSECT at address 0x168
195203
```
196204
197205
Here is the interpretation of the fields:
@@ -204,16 +212,18 @@ The programming method will change:
204212
```
205213
* Matter application offset address should change to
206214
Using DK6Programmer utility from Windows:
215+
207216
```
208217
DK6Programmer.exe -V2 -s <COM_PORT> -P 1000000 -Y -p FLASH@0x2000="chip-k32w0x-contact-example.bin"
209218
```
210219
211220
Using dk6prog from SPSDK:
221+
212222
```
213223
$ dk6prog -d DN038ZH3 write 0x2000 ~/path/to/bin/chip-k32w0x-contact-example.bin
214224
215225
This is an experimental utility. Use with caution!
216226
217227
Writing memory [####################################] 100%
218-
Writen 596450 bytes to memory ID 0 at address 0x2000
228+
Written 596450 bytes to memory ID 0 at address 0x2000
219229
```

0 commit comments

Comments
 (0)