Skip to content

Commit 8b51b4f

Browse files
authored
Update README.md
- Fixes for SL_STK3701A usage examples.
1 parent 7c55327 commit 8b51b4f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ To update the firmware of a Silabs target with a local firmware file (for exampl
268268
This file has to be a binary file with a valid Booter and CLR from a build. No checks or validations are performed on the file(s) content.
269269

270270
```console
271-
nanoff --update --platform gg11 --binaryfile "C:\nf-interpreter\build\nanobooter-nanoclr.bin"
271+
nanoff --update --platform gg11 --binaryfile "C:\nf-interpreter\build\nanobooter-nanoclr.bin" --address 0x0
272272
```
273273

274274
### Deploy a managed application to a SL_STK3701A target
@@ -278,7 +278,7 @@ To deploy a managed application to a SL_STK3701A target, which has the deploymen
278278
>Note: The binary file with the deployment image can be found on the Release or Debug folder of a Visual Studio project after a successful build. This file contains everything that's required to deploy a managed application to a target (meaning application executable and all referenced libraries and assemblies).
279279
280280
```console
281-
nanoff --target ST_STM32F769I_DISCOVERY --deploy --image "E:\GitHub\nf-Samples\samples\Blinky\Blinky\bin\Debug\Blinky.bin" --address 0x000EE000 --reset
281+
nanoff --target SL_STK3701A --deploy --image "E:\GitHub\nf-Samples\samples\Blinky\Blinky\bin\Debug\Blinky.bin" --address 0x000EE000
282282
```
283283

284284
### Update the firmware of a SL_STK3701A along with a managed application
@@ -288,7 +288,7 @@ You have to specify the path to the managed application.
288288
This example uses the binary format file that is generated by Visual Studio when building any nanoFramework C# application. Because it's a binary file you have to specify too the flash address of the deployment region (here 0x000EE000, mind the hexadecimal format).
289289

290290
```console
291-
nanoff --update --target SL_STK3701A --jtag --binfile "c:\dev\my awesome app\bin\debug\my_awesome_app.bin" --address 0x000EE000
291+
nanoff --update --target SL_STK3701A --binfile "c:\dev\my awesome app\bin\debug\my_awesome_app.bin" --address 0x000EE000
292292
```
293293

294294
### List all Silabs devices available with J-Link connection

0 commit comments

Comments
 (0)